string容器
在C++中经常如下定义字符串
string str;
而string
本质是C++中的一个类。char *
是一个指针,string
类内部封装了char *
string类的构造函数:
string(); //创建控的字符串
sring(const char *s); //使用s初始化字符串
string(const string &str); //拷贝构造函数,使用另一个字符串初始化初始化字符串
string(int n, char c); //使用n个字符c初始化字符串
string str1("hello world");
string str2(str1); //使用拷贝构造函数初始化str2
string str3(520, 'H'); //使用520个H字符初始化str3
string赋值操作
对应构造函数string
类的赋值操作就有很多种
char *s = "hello world";
string str(s);
cout << str << endl;
string str1;
str1.assign(str); //将字符串str的值赋值给str1
cout << str1 << endl;
string str2;
str2.assign(s); //将指针s存放的字符串赋值给str2
string str3;
str3.assign(s, 5); //字符串s的前5个字符赋值给str3
cout << str3 << endl;
string str4;
str4 = 'H'; //将字符H赋值给str4
cout << str4 << endl;
string str5;
str5.assign('H', 520); //将520个字符H赋值给str5
string str6 = "I love u."; //直接赋值
赋值操作很多很构造函数初始化字符串差不多。
string字符串拼接
char *s = "Hello";
string str1 = s;
str1 += ",Linux"; //在字符串后追加一个字符串
cout << str1 << endl;
string str2 = "I love ";
str2 += 'u'; //在字符串后面追加一个字符
cout << str2 << endl;
char *ss = "love u";
string str3 = "I ";
str3 += ss; //
cout << str3 << endl;
//使用string类的方法拼接字符串
string str4 = "aaa ";
str4.append(str3); //使用string类的方法在str4后面拼接str3
cout << str4 << endl;
string str5 = "bbb ";
str5.append(s, 4); //将字符串的s的前5个字符拼接到str5
cout << str5 << endl;
string str6;
str6.append(str1, 0, 4); //将字符串str1的第0个位置开始的5个字符拼接到str6
cout << str6 << endl;
string查找、替换
string类
中关于字符串查找替换的方法:
find()
方法是从左往右查找,rfind()
方法是从右往左查找
//字符串查找
int find(const string &str, int pos = 0); //从pos(默认为0)位置查找,str字符串第一次出现的位置
int find(const char *s, int pos = 0);
int find(const char* s, int pos, int n); //从pos位置开始查找s字符串前n个字符第一次出现位置
int find(const char c, int pos = 0) ;
int rfind(const string& str, int pos = npos); //从pos位置开始查找str最后一次出现的位置
int rfind(const char* s, int pos = npos) ;
int rfind(const char* s, int pos, int n) ; //从pos位置查找s的前n个字符最后一次位置
int rfind(const char c, int pos = 0);
//字符串替换
string &replace(int pos, int n, const string& str); //从pos开始n个字符替换为字符串str
string &replace(int pos, int n, const char* s);
void find_replace(void)
{
string str = "I turned my heart toward the moon, but the moon shines on the ditch";
int pos = str.find("moon");
if (pos < 0)
{
cout << "don't find" << endl;
}
else
{
cout << "moon pos:" << pos << endl;
}
pos = str.rfind("moon");
if (pos < 0)
{
cout << "don't find" << endl;
}
else
{
cout << "rmoon pos :" << pos << endl;
}
}
string字符串比较
一般用来比较字符串是否一致,字符串相等则返回0。比较的是字符串的ASCII值
int compare(const string &s); //与字符串s比较
int compare(const char *s); //与字符串s比较
void string_compare(void)
{
string str1 = "I turned my heart toward the moon, but the moon shines on the ditch"; //我本将心向明月,奈何明月照沟渠
string str2 = "Willow twigs are blown sparingly thin";
int retval = str1.compare(str2);
if (retval == 0)
{
cout << "str1 == str2" << endl;
}
else if (retval > 0)
{
cout << "str1 > str2" << endl;
}
else
{
cout << "str1 < str2" << endl;
}
}
string字符存取
char str[n]; //通过类似数组的方式存取字符
char& at(int n); //通过at方法存取字符
void string_get_set(void)
{
string str = "I turned my heart toward the moon, but the moon shines on the ditch"; //我本将心向明月,奈何明月照沟渠
for (int i = 0; i < str.size(); i++)
{
cout << str[i];
}
cout << "\r\n";
for (int index = 0; index < str.size(); index++)
{
cout << str.at(index);
}
cout << endl;
str[0] = 'u'; //修改
str.at(5) = 'b';
for (int x = 0; x < str.size(); x++)
{
cout << str.at(x);
}
}
string插入和删除
string& insert(int pos, const char* s); //从pos位置开始插入字符串s
string& insert(int pos, const string& str);
string& insert(int pos, int n, char c); //在指定位置pos开始插入n个字符c
string& erase(int pos, int n = npos); //从pos位置开始删除n个字符
void insert_erase(void)
{
string s = "I am helpless ";
string str_str = "I turned my heart toward the moon, but the moon shines on the ditch";
cout << str_str << endl;
str_str.insert(2, s);
cout << str_str << endl;
str_str.erase(2, s.size());
cout << str_str << endl;
}
string子字符串
string substr(int pos = 0, int n = npos); //从pos位置开始返回n个字符组成的字符串
void string_substr(void)
{
string str = "I turned my heart toward the moon, but the moon shines on the ditch";
string ret_str = str.substr(5, 20);
cout << ret_str << endl;
}