QT中indexOf函数说明

函数说明

Qt中的indexOf()方法功能与C++中find()方法基本相同,基本功能都为查找目标字符串,并返回其所在字符串中的索引,如果未找到则返回-1。与string::find()方法不同的是,indexOf()方法支持是否区分大小写的查找,不过其使用时会出现无效的问题。
我们先看一下官方文档中的说明:

int QString::indexOf(QLatin1String str, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive) const
Returns the index position of the first occurrence of the string str in this string, searching forward from index position from. Returns -1 if str is not found.
If cs is Qt::CaseSensitive (default), the search is case sensitive; otherwise the search is case insensitive.

文档中描述如果cs为Qt::CaseSensitive则区分大小写,否则不区分大小写。看起来似乎与find()一致,但在实际编码中发现,,使用上述方法并不能达到不区分大小写查找的目的。

仔细阅读官方文档,可以发现indexOf()方法有3个参数,尽管第二个参数显示有默认值,但在实际使用中,仍需要为其赋值,不对其赋值会导致搜索是否区分大小写无效。

示例

QString strTmp = "IndexOfTest";
int nPos = strTmp.indexOf("of", 0, Qt::CaseInsensitive);

示例代码运行在Qt Creator 5.14版本下

你可能感兴趣的:(c++,qt,qt,c++)