在C++中,字符串(string)是一个非常常见的数据类型。而且,字符串处理在程序设计中也是一个非常重要的环节。本文将介绍一些常用的C++中字符串处理的技巧,希望对读者有所帮助。
一、C++中的字符串类
在C++中,string是一个类,包含在头文件
1、append()函数:用于将一个字符串添加到另一个字符串尾部。
例如:
string str1 = "Hello";
string str2 = " World";
str1.append(str2);
cout
2、length()函数:用于获得字符串的长度。
例如:
string str = "Hello World";
int len = str.length(); //len变量保存的值为11
3、substr()函数:用于截取字符串的一部分。
例如:
string str = "Hello World";
string s = str.substr(6, 5); //从字符串的第6个字符开始,截取长度为5的子串
cout
4、erase()函数:用于删除字符串的一部分。
例如:
string str = "Hello World";
str.erase(5, 6); //删除字符串中第5个字符开始,长度为6的子串
cout
二、字符串的遍历
1、使用下标访问:
使用下标访问字符串的每个元素。
例如:
string str = "Hello World";
for (int i = 0; i
cout << str[i] << " ";
}
输出结果为:
H e l l o W o r l d
2、使用迭代器:
使用C++中的迭代器(iterator),可以方便地对字符串进行遍历。
例如:
string str = "Hello World";
for (string::iterator it = str.begin(); it != str.end(); ++it) {
cout << *it << " ";
}
输出结果为:
H e l l o W o r l d
三、字符串的拆分和合并
1、字符串的拆分:
可以使用stringstream类的对象,将字符串按照某个分隔符进行拆分。
例如:
string str = "Hello World, This is a good day!";
stringstream ss(str);
string s;
while (getline(ss, s, ',')) {
cout << s << endl;
}
输出结果为:
Hello World
This is a good day!
2、字符串的合并:
可以使用stringstream类的对象,将多个字符串进行合并。
例如:
stringstream ss;
string s1 = "Hello";
string s2 = " World!";
ss
string s = ss.str();
cout
输出结果为:
Hello World!
四、其他常用函数
1、atoi()函数:
将字符串转化为整数。
例如:
char a[] = "1234";
int b = atoi(a);
cout
2、atof()函数:
将字符串转化为浮点数。
例如:
char a[] = "12.34";
float b = atof(a);
cout
3、strcmp()函数:
比较两个字符串的大小。
例如:
char str1[] = "Hello";
char str2[] = "World";
int res = strcmp(str1, str2);
cout
4、strstr()函数:
查找字符串中是否包含另一个字符串。
例如:
char haystack[] = "Hello World";
char needle[] = "Wo";
char *res = strstr(haystack, needle);
cout
注意:返回值为指向首次出现的子串的指针。
以上是C++中常用的字符串处理技巧,希望可以帮助到大家。当然,还有很多其他的技巧和函数可以用来处理字符串,需要不断地学习和实践。
以上是C++中的字符串处理技巧的详细内容。更多信息请关注PHP中文网其他相关文章!