Lesiok, Thanks in advance
Qt Code:
  1. list <<"dcsdcsdcscsc"<<"jjjjj" <<"hghghghegggg"<<"hello" << "heeeeee"<<"he" << "kreo" << "gry" << "hhh";
  2.  
  3. for(int i=0; i<9; i++)
  4. {
  5. if(list.indexOf(QRegExp("*he*", Qt::CaseInsensitive, QRegExp::Wildcard), i)-i == 0)
  6. qDebug() <<list.indexOf(QRegExp("*he*", Qt::CaseInsensitive, QRegExp::Wildcard), i);
  7. }
To copy to clipboard, switch view to plain text mode 

works well.