QStringList的indexOf匹配

QStringList中存放了一系列的字符串,想找到某一个字符串的索引位置,如何使用.

答: 利用QStringList提供的indexOf方法(参数为QString)

"

int QStringList::indexOf(const QString & value, int from = 0) const

Returns the index position of the first occurrence of value in the list, searching forward from index position from. Returns -1 if no item matched.

"

具体测试:

    /*** 测试QStringList的IndexOf是否是全词匹配 ***/
    qDebug() <<"=========================================";
    QStringList sList;
    sList << "aaa" <<"aaaaaa" << "bb"<< "bbbbbb"<<"aaabb"<<"cc" <<"cc";
 
  
    qDebug() << (0  == sList.indexOf("aaa"));
    qDebug() << (1  == sList.indexOf("aaaaaa"));
    qDebug() << (-1 == sList.indexOf("aaaa"));  //整词匹配
    qDebug() << (2  == sList.indexOf("bb"));
    qDebug() << (-1 == sList.indexOf("aab"));
    qDebug() << (-1 == sList.indexOf("dd"));    //找不到返回-1
    qDebug() << (5 == sList.indexOf("cc"));     //找第一个返回
 
  
 执行结果: 
  

=========================================

true

true

true

true

true

true

true 





你可能感兴趣的:(Qt)