字符串内容的替换

2021-06-17 19:39:40 浏览数 (1)

字符串string类有成员函数replace()

代码语言:javascript复制
string str;
string s1;
str.replace(pos,len,s1);//使用s1的长度为len,从str的pos位置开始替换
str.replace(pos,len,s1,pos1,len1);//使用s1的子串从pos1开始长度为len1。替换str中从pos开始长度为len的长度

0 人点赞