c++获取字符串后四位
时间: 2023-12-21 15:04:26 浏览: 144
c++面试字符串_C++字符串_
可以使用字符串的substr方法来获取字符串的后四位,具体代码如下:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "Hello World";
string lastFour = str.substr(str.length() - 4);
cout << "The last four characters are: " << lastFour << endl;
return 0;
}
```
在上面的代码中,我们先定义了一个字符串str,然后使用substr方法获取了字符串的后四位。substr方法的参数是起始位置和子串长度,因为我们要获取后四位,所以起始位置应该是字符串长度减去4。最后将结果输出即可。
阅读全文