substr与assign

C++中substr()函数用法
substr(起始位置,长度)

#include
#include
using namespace std;
main()
{
string s("12345asdf");
string a=s.substr(0,4); //获得字符串s中 从第0位开始的长度为4的字符串
cout<
}

输出结果为:
1234

assign()函数:
函数以下列方式赋值:

用str为字符串赋值,
用str的开始num个字符为字符串赋值,
用str的子串为字符串赋值,子串以index索引开始,长度为len
用num个字符ch为字符串赋值.
例如以下代码:
string str1, str2 = "War and Peace";
str1.assign( str2, 4, 3 ); //str2 字符串的第4个字符位置开始赋值给str1,长度为3个字符
cout << str1 << endl;

显示:
and

你可能感兴趣的:(C/C++)