Hi,
There is a QStringList with "n" fields. I want to search a QString in all items of the QStringList and item at index position "i" must be returned. Case Sensitive is not important. even if that QString be inside in an item, that item must be returned.

for example:

Qt Code:
  1. list<< "Hello" << "lombo" << "Hi" << "hlok";
  2. //I want to search "lo" and need to find this in: "Hello", "lombo", "hlok" and returned items at index position 0, 1, 3
To copy to clipboard, switch view to plain text mode 

Thanks for any help