一、常用的字符串处理方式
C++中的字符串是由字符组成的数组,每个字符都有一个对应的ASCII代码值,在处理字符串时,我们常用的方式 mainly 有:
1、数组下标访问:通过下标操作符[]获取字符串中的某个字符,可以直接对字符进行修改。例如:
string str = "hello world";
for (int i = 0; i < str.size(); i++) {
cout << str[i] << " ";
}
2、指针遍历:利用指针逐个访问字符串中的字符,注意需要判断字符串的结束符'\0',以免指针越界,例如:
char str[] = "hello world";
char *ptr = str;
while (*ptr != '\0') {
cout << *ptr << " ";
ptr++;
}
3、字符串迭代器:使用迭代器来访问字符串中的元素,具有安全性能好、代码读写方便的优点。例如:
string str = "hello world";
for (auto it = str.begin(); it != str.end(); it++) {
cout << *it << " ";
}
二、常用的字符串处理函数
字符串处理函数包括一些可以对字符串进行查找、替换、删除等操作的函数。常用的字符串处理函数 mainly 有:
1、查找函数find:查找字符串中第一个出现的子串位置,如果找不到则返回-1。例如:
string str = "hello world";
int pos = str.find("world");
if (pos != -1) {
cout << "找到了!位置是:" << pos << endl;
}
else {
cout << "未找到!" << endl;
}
2、替换函数replace:将字符串中的部分子串替换成指定的新串。例如:
string str = "hello world";
str.replace(6, 5, "China");
cout << str << endl;
3、插入函数insert:将指定字符串插入到目标字符串中的指定位置。例如:
string str = "hello world";
str.insert(6, "China ");
cout << str << endl;
4、截取函数substr:从指定位置开始,截取指定长度的子串。例如:
string str = "hello world";
string newStr = str.substr(6, 5);
cout << newStr << endl;
5、删除函数erase:删除字符串中的一段子串。例如:
string str = "hello world";
str.erase(6, 5);
cout << str << endl;
三、字符串几个常用的处理函数
主要介绍几个特殊的字符串处理函数,包括大小写转换、去掉字符串中的空格、特殊字符处理等。
1、大小写转换函数:可以将字符串中的所有字符转换为大写或小写形式,分别对应toupper和tolower函数。例如:
string str = "Hello World";
transform(str.begin(), str.end(), str.begin(), ::tolower); // 转换为小写字符
cout << str << endl;
2、去空格函数:可以将字符串两端的空格去除,注意该函数只能去掉两端的空格,不能去掉中间的空格。例如:
string str = " hello world ";
int left = str.find_first_not_of(" "); // 查找左侧第一个非空字符
int right = str.find_last_not_of(" "); // 查找右侧第一个非空字符
str = str.substr(left, right - left + 1); // 截取子字符串
cout << str << endl;
3、特殊字符处理函数:可以将字符串中出现的特殊字符转义成其他字符,例如C++中规定双引号"需要用\"来表示,单引号'需要用\'来表示。例如:
string str = "I said \"Hello World!\"";
string newStr;
for (int i = 0; i < str.size(); i++) {
if (str[i] == '"') {
newStr += "\\\"";
}
else {
newStr += str[i];
}
}
cout << newStr << endl;
四、string处理字符串常用的方法
string是C++中常用的字符串类型,其常用的处理方法 mainly 有:
1、获取字符串长度size函数:获取当前字符串的长度,注意字符串长度不包括结束符'\0'。例如:
string str = "hello world";
cout << str.size() << endl;
2、比较字符串大小compare函数:比较两个字符串的大小,返回值为0表示两个字符串相等,为正数表示第一个字符串大于第二个字符串,为负数表示第一个字符串小于第二个字符串。例如:
string str1 = "hello";
string str2 = "world";
int res = str1.compare(str2);
if (res == 0) {
cout << "两个字符串相等" << endl;
}
else if (res > 0) {
cout << "str1大于str2" << endl;
}
else {
cout << "str1小于str2" << endl;
}
3、清空字符串clear函数:清空当前字符串内容,让当前字符串变为空字符串。例如:
string str = "hello world";
str.clear();
cout << str << endl;
4、字符串连接操作+运算符:将两个字符串连接成一个新的字符串。例如:
string str1 = "hello";
string str2 = "world";
string str3 = str1 + " " + str2;
cout << str3 << endl;
5、字符串复制操作=运算符:将一个字符串复制到另一个字符串中。例如:
string str1 = "hello world";
string str2 = str1;
cout << str2 << endl;
总结
本文主要讲解了C++中字符串处理的常用函数,从字符串处理方式、常用函数、特殊字符处理、string类型的方法等四个方面进行了详细的介绍。在实际的编程过程中,了解这些常用的字符串处理方法,可以使得编程更加高效、方便。