QString判断字符串是否包含
时间: 2023-10-25 11:10:13 浏览: 119
判断某字符串是否存在
可以使用QString的contains函数来判断字符串是否包含指定的子字符串。contains函数的语法如下:
```
bool QString::contains(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const
```
其中,第一个参数str为要查找的子字符串,第二个参数cs表示查找时是否区分大小写,可选值为Qt::CaseSensitive和Qt::CaseInsensitive,默认为Qt::CaseSensitive。
示例代码:
```
QString str = "hello world";
if(str.contains("world")) {
qDebug() << "包含world字符串";
} else {
qDebug() << "不包含world字符串";
}
```
输出结果为:包含world字符串。
阅读全文