1string.c__str();
string s("qwertyu");
const char* o = s.c_str();
cout << s << endl;qwertyu
cout << o << endl;qwertyu
2.find
string s("123456781231236123");
int pos = s.find("123");
cout << pos << endl;
从左往右,遇到的第一个“123”,就返回‘1’的下标
int a = s.find("123", 4);
cout << a << endl;
从下标四开始数
3.rfind
string s("123456781231236123");
int pos = s.rfind("123");
cout << pos << endl;
从右往左,遇到的第一个“123”,就返回‘1’的下标
int a = s.rfind("123", 4);
cout << a << endl;
从下标四开始数
4.substr
string s("qwerty");
string p("asdf");
p=s.substr(0, 2);
cout << p << endl;
把s从0开始,截取2个,覆盖到p上
5.find_first_of从左往右找
string s("abcdab");
int p = s.find_first_of("hce");
cout << p << endl;
s中只有出现“hce”中的一个就返回它的下标
string s("abcdab");
int p = s.find_first_of("hce",4);
cout << p << endl;
从下标4开始找,由于找不到,就返回-1
6.find_last_of从右往左找
string s("abcdab");
int p = s.find_first_of("ab",4);
cout << p << endl;
string s("abcdab");
int p = s.find_first_of("ab");
cout << p << endl;
7.+
string s("abcdab");
string p=s+"qwe";
cout << p << endl;
可以:string+char*
s+"qwe"
"qww"+s
不可以:"qwe"+"qwe"