c÷÷定义截取字符串的方法
时间: 2024-06-12 10:10:13 浏览: 82
C语言实现字符串截取
4星 · 用户满意度95%
C++中可以使用substr()函数来截取字符串。该函数的语法如下:
```
string substr (size_t pos, size_t len) const;
```
其中,pos表示要截取的子字符串的起始位置,len表示要截取的子字符串的长度。例如,下面的代码截取了字符串str中从第3个字符开始的5个字符:
```
string str = "Hello, world!";
string sub = str.substr(2, 5); // sub的值为"llo, "
```
注意,pos的取值范围是[0, size()-1],即字符串的有效下标范围。
阅读全文