C++中的substr函数是用于获取一个字符串的子字符串。它的用法如下:
string substr (size_t pos, size_t len) const;
参数说明:
返回值:
示例用法:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
std::string substr = str.substr(7, 5);
std::cout << substr << std::endl; // 输出 "World"
return 0;
}
上述示例中,使用substr函数从字符串"Hello, World!“中提取了从第7个字符开始的5个字符,即"World”。然后将提取到的子字符串赋值给substr变量,并输出结果。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c++中rpc框架的作用是什么