C++将一个字符串中从某位置开始长度为len的字符取出来并输出

急急急
2024-11-22 18:21:13
推荐回答(1个)
回答(1):

#include
#include
using namespace std;

int main()
{
string s = "12345helloworld";
string sub_s = s.substr(3,4); //s.substr(m,n) 意思是取字符串s中位置m处开始,长为n的子串
cout<
return 0;

}