<string>
,下面的例子介绍了几种定义 string 变量(对象)的方法:#include <iostream> #include <string> using namespace std; int main(){ string s1; string s2 = "c plus plus"; string s3 = s2; string s4 (5, 's'); return 0; }变量 s1 只是定义但没有初始化,编译器会将默认值赋给 s1,默认值是
""
,也即空字符串。"c plus plus"
。与C风格的字符串不同,string 的结尾没有结束标志'\0'
。"c plus plus"
。's'
字符组成的字符串,也就是"sssss"
。=
进行赋值。string 变量也可以用C风格的字符串进行赋值,例如,s2 是用一个字符串常量进行初始化的,而 s3 则是通过 s2 变量进行初始化的。string s = "http://task.lmcjl.com"; int len = s.length(); cout<<len<<endl;输出结果为
22
。由于 string 的末尾没有'\0'
字符,所以 length() 返回的是字符串的真实长度,而不是长度 +1。string path = "D:\\demo.txt"; FILE *fp = fopen(path.c_str(), "rt");为了使用C语言中的 fopen() 函数打开文件,必须将 string 字符串转换为C风格的字符串。
>>
进行输入,用<<
进行输出。请看下面的代码:#include <iostream> #include <string> using namespace std; int main(){ string s; cin>>s; //输入字符串 cout<<s<<endl; //输出字符串 return 0; }运行结果:
>>
默认会忽略空格,遇到空格就认为输入结束,所以最后输入的http://vip.lmcjl.com
没有被存储到变量 s。#include <iostream> #include <string> using namespace std; int main(){ string s = "1234567890"; for(int i=0,len=s.length(); i<len; i++){ cout<<s[i]<<" "; } cout<<endl; s[5] = '5'; cout<<s<<endl; return 0; }运行结果:
s[5] = '5';
就将第6个字符修改为 '5',所以 s 最后为 "1234557890"。+
或+=
运算符来直接拼接字符串,非常方便,再也不需要使用C语言中的 strcat()、strcpy()、malloc() 等函数来拼接字符串了,再也不用担心空间不够会溢出了。+
来拼接字符串时,运算符的两边可以都是 string 字符串,也可以是一个 string 字符串和一个C风格的字符串,还可以是一个 string 字符串和一个字符数组,或者是一个 string 字符串和一个单独的字符。请看下面的例子:
#include <iostream> #include <string> using namespace std; int main(){ string s1 = "first "; string s2 = "second "; char *s3 = "third "; char s4[] = "fourth "; char ch = '@'; string s5 = s1 + s2; string s6 = s1 + s3; string s7 = s1 + s4; string s8 = s1 + ch; cout<<s5<<endl<<s6<<endl<<s7<<endl<<s8<<endl; return 0; }运行结果:
string& insert (size_t pos, const string& str);
pos 表示要插入的位置,也就是下标;str 表示要插入的字符串,它可以是 string 字符串,也可以是C风格的字符串。#include <iostream> #include <string> using namespace std; int main(){ string s1, s2, s3; s1 = s2 = "1234567890"; s3 = "aaa"; s1.insert(5, s3); cout<< s1 <<endl; s2.insert(5, "bbb"); cout<< s2 <<endl; return 0; }运行结果:
string& erase (size_t pos = 0, size_t len = npos);
pos 表示要删除的子字符串的起始下标,len 表示要删除子字符串的长度。如果不指明 len 的话,那么直接删除从 pos 到字符串结束处的所有字符(此时 len = str.length - pos)。#include <iostream> #include <string> using namespace std; int main(){ string s1, s2, s3; s1 = s2 = s3 = "1234567890"; s2.erase(5); s3.erase(5, 3); cout<< s1 <<endl; cout<< s2 <<endl; cout<< s3 <<endl; return 0; }运行结果:
string substr (size_t pos = 0, size_t len = npos) const;
pos 为要提取的子字符串的起始下标,len 为要提取的子字符串的长度。#include <iostream> #include <string> using namespace std; int main(){ string s1 = "first second third"; string s2; s2 = s1.substr(6, 6); cout<< s1 <<endl; cout<< s2 <<endl; return 0; }运行结果:
size_t find (const string& str, size_t pos = 0) const;
size_t find (const char* s, size_t pos = 0) const;
#include <iostream> #include <string> using namespace std; int main(){ string s1 = "first second third"; string s2 = "second"; int index = s1.find(s2,5); if(index < s1.length()) cout<<"Found at index : "<< index <<endl; else cout<<"Not found"<<endl; return 0; }运行结果:
#include <iostream> #include <string> using namespace std; int main(){ string s1 = "first second third"; string s2 = "second"; int index = s1.rfind(s2,6); if(index < s1.length()) cout<<"Found at index : "<< index <<endl; else cout<<"Not found"<<endl; return 0; }运行结果:
#include <iostream> #include <string> using namespace std; int main(){ string s1 = "first second second third"; string s2 = "asecond"; int index = s1.find_first_of(s2); if(index < s1.length()) cout<<"Found at index : "<< index <<endl; else cout<<"Not found"<<endl; return 0; }运行结果:
本文链接:http://task.lmcjl.com/news/8519.html