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:
QStringList list; list<< "Hello" << "lombo" << "Hi" << "hlok"; //I want to search "lo" and need to find this in: "Hello", "lombo", "hlok" and returned items at index position 0, 1, 3To copy to clipboard, switch view to plain text mode
Thanks for any help
Bookmarks