qstring匹配字符串
时间: 2023-11-18 12:49:39 浏览: 176
testQString2.zip
QString是Qt框架中的一个类,用于处理字符串。它提供了多种方法来操作字符串,包括查找、替换、拼接等。
要匹配一个字符串,可以使用QString中的contains()方法。该方法会返回一个布尔值,表示字符串是否包含指定的子字符串。
示例代码:
```
QString str = "Hello, world!";
if (str.contains("world")) {
qDebug() << "Found";
} else {
qDebug() << "Not found";
}
```
该代码会输出"Found",因为字符串"Hello, world!"中包含子字符串"world"。
除了contains()方法,QString还提供了其他匹配字符串的方法,如startsWith()、endsWith()等。具体使用方法可以参考Qt官方文档。
阅读全文