qstring将某一段字符串替换成其它字符串
时间: 2023-12-28 13:06:26 浏览: 122
把旧的字符串换成新的字符串
5星 · 资源好评率100%
你可以使用QString类中的replace函数来替换某一段字符串。该函数的语法如下:
```cpp
QString& QString::replace(int position, int n, const QString& after);
```
其中,position表示要替换的起始位置,n表示要替换的字符数,after表示替换后的字符串。例如,如果你要将字符串中的"hello"替换为"world",可以这样写:
```cpp
QString str = "hello world";
str.replace(0, 5, "world");
```
执行完毕后,str的值为"world world"。
阅读全文