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

急急急
2024年11月22日 18:21
有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;

}