欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > c++ string

c++ string

2025/1/18 10:53:26 来源:https://blog.csdn.net/qq_33582129/article/details/145158303  浏览:    关键词:c++ string

1 sting 基本概念

string 基本概念
本质:string是c++风格的字符串,而string 本质上是一个类string 和char* 的区别:
char * 是一个指针
string 是一个类,类内部封装了char*,管理这个字符串,是一个char* 数组

2 构造函数原型

string();//创建一个空的字符串 例如: string str;
string(const char* s);//使用单个字符串初始化
string(const string& str);//使用一个string对象初始化
string(const char* str, int n);//使用n个字符串初始化
#include <iostream>
#include <fstream>
#include <string>
using namespace std;void test01() {string s1 ; // 默认构造函数const char* str = "hello world";string s2(str); // 使用字符串初始化cout << "s2 = " << s2 << endl;string s3(s2); // 拷贝构造函数cout << "s3 = " << s3 << endl;string s4(10, 'a'); // 使用n个字符c初始化cout << "s4 = " << s4 << endl;
}int main(int argc, char const *argv[]) {test01();return 0;
}

3. 赋值操作

#include <iostream>
#include <fstream>
#include <string>
using namespace std;// sring 赋值操作
/*
- string& operator=(const char* s);  // char*类型字符串赋值给当前的字符串
- string& operator=(const string& str);  // 把字符串str赋值给当前字符串
- string& operator=(char c);  // 字符赋值给当前字符串
- string& assign(const char* s);  // 把字符串s赋值给当前字符串
- string& assign(const char* s, int n);  // 把字符串s的前n个字符赋值给当前字符串
- string& assign(const string& str);  // 把str这个字符串赋值给当前字符串
- string& assing(int n, char c);  // 用n个字符c赋值给当前字符串
*/void test01() {string str1;str1 = "hello world";cout << "str1 = " << str1 << endl;string str2;str2 = str1;cout << "str2 = " << str2 << endl;string str3;str3 = 'a';cout << "str3 = " << str3 << endl;string str4;str4.assign("hello c++");cout << "str4 = " << str4 << endl;string str5;str5.assign("hello c++", 5);cout << "str5 = " << str5 << endl;string str6;str6.assign(str4);cout << "str6 = " << str6 << endl;string str7;str7.assign(5, 'x');cout << "str7 = " << str7 << endl;
}int main(int argc, char const *argv[]) {test01();return 0;
}

4 字符串拼接

#include <iostream>
#include <fstream>
#include <string>
using namespace std;// 字符串拼接void test01() {string str1 = "hello";str1 += "world"; // 字符串拼接cout << str1 << endl;   str1 += '!'; // 字符 拼接cout << str1 << endl;string str2 = "hello";str1 += str2; // 字符串拼接cout << str1 << endl;string str3 = "我 ";str3.append("爱"); // 字符串拼接cout << str3 << endl;str3.append("game adcde", 4); // 取前4个字符cout << str3 << endl;str3.append(str2, 0, 2); // str2 从下标0开始 拼接2个字符cout << str3 << endl;
}int main(int argc, char const *argv[]) {test01();return 0;
}

5 string 查找和替换

#include <iostream>
#include <fstream>
#include <string>
using namespace std;// string 查找和替换void test01() {// 查找string str = "abcdefghijklde";int pos = str.find("de");if (pos != -1){cout << "find pos: " << pos << endl;}else{cout << "not find" << endl;}// rfind 从右边开始查找pos = str.rfind("de");cout << "rfind pos: " << pos << endl;
}// 替换
void test02() {string str = "abcdefghijklde";str.replace(1, 3, "11111"); // 从第1个位置开始,替换3个字符,替换成11111cout << str << endl;
}int main(int argc, char const *argv[]) {test02();return 0;
}

6. 字符串比较

比较方式:
字符串比较是按照字符的ASCII码进行比较的
#include <iostream>
#include <fstream>
#include <string>
using namespace std;// 字符串比较void test01() {string s1 = "xello";string s2 = "zello";if(s1.compare(s2) == 0){cout << "s1 == s2" << endl;}else if(s1.compare(s2) > 0){cout << "s1 > s2" << endl;}else{cout << "s1 < s2" << endl;}
}int main(int argc, char const *argv[]) {test01();return 0;
}

7 string 字符存取

string 中单个字符存取方式有两种

char& operator[](int n); // 通过[ ]方式取字符
char& at(int n); // 通过at 方法取字符
#include <iostream>
#include <fstream>
#include <string>
using namespace std;// string 字符存取
void test01() {string s1 = "hello";// 通过[]访问字符串中单个字符for (int i = 0; i < s1.size(); i++){cout << s1[i] ;}cout << endl;// 通过at访问字符串中单个字符for (int  i = 0; i < s1.size(); i++){cout << s1.at(i);}cout << endl;// 修改字符串s1[0] = 'x';cout << s1 << endl;s1.at(1) = 'x';cout << s1 << endl;}int main(int argc, char const *argv[]) {test01();return 0;
}

8 string 字符串插入和删除

函数原型
string& insert(int pos, const string& str); //在pos位置插入str
string& insert(int pos, const char* s); //在pos位置插入s
string& insert(int pos, int n, char c); //在pos位置插入n个字符c
string& erase(int pos, int n = npos); //删除从pos开始的n个字符
#include <iostream>
#include <fstream>
#include <string>
using namespace std;// 字符串插入和删除// 函数原型
// string& insert(int pos, const string& str); //在pos位置插入str
// string& insert(int pos, const char* s); //在pos位置插入s
// string& insert(int pos, int n, char c); //在pos位置插入n个字符c
// string& erase(int pos, int n = npos); //删除从pos开始的n个字符void test01() {string str = "hello";// 插入str.insert(1, "111");cout << str << endl;// 删除str.erase(1, 3);cout << str << endl;
}int main(int argc, char const *argv[]) {test01();return 0;
}

9. string 子串

从字符串中获取想要的子串

函数原型:

string substr (size_t pos = 0, size_t len = npos) const; //返回一个字符串,包含从pos开始的len个字符
#include <iostream>
#include <fstream>
#include <string>
using namespace std;// 从字符串中获取想要的子串
// 函数原型:
// string substr (size_t pos = 0, size_t len = npos) const; //返回一个字符串,包含从pos开始的len个字符void test01() {string str = "hello world";string subStr = str.substr(0, 5);cout << "subStr = " << subStr << endl;
}// 实用操作
void test02() {string str = "zhangsan@163.com";// 从字符串中获取邮件名称int pos = str.find("@");cout << "pos = " << pos << endl;string name = str.substr(0, pos);cout << "name = " << name << endl;
}int main(int argc, char const *argv[]) {test02();return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com