c++ string

ops/2025/1/20 22:34:11/

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;
}

http://www.ppmy.cn/ops/151772.html

相关文章

独立看门狗(IWDG)实验【学习记录】

STM32内部自带了 2个看门狗&#xff1a;独立看门狗&#xff08; IWDG&#xff09;和窗口看门狗 WWDG&#xff09;。 我们将通过按键 WK_UP来喂狗&#xff0c;然后通过 DS0提示复位状态。 10.1 STM32独立看门狗简介 40KHZ低速时钟驱动&#xff0c;是一个内部RC时钟&#xff0…

C语言之装甲车库车辆动态监控辅助记录系统

&#x1f31f; 嗨&#xff0c;我是LucianaiB&#xff01; &#x1f30d; 总有人间一两风&#xff0c;填我十万八千梦。 &#x1f680; 路漫漫其修远兮&#xff0c;吾将上下而求索。 C语言之装甲车库车辆动态监控辅助记录系统 目录 一、前言 1.1 &#xff08;一&#xff09;…

Elasticsearch:Jira 连接器教程第一部分

作者&#xff1a;来自 Elastic Gustavo Llermaly 将我们的 Jira 内容索引到 Elaasticsearch 中以创建统一的数据源并使用文档级别安全性进行搜索。 在本文中&#xff0c;我们将回顾 Elastic Jira 原生连接器的一个用例。我们将使用一个模拟项目&#xff0c;其中一家银行正在开发…

基于单片机的直流电机控制系统(论文+源码)

1 系统方案设计 本设计基于单片机的直流电机控制系统的总体架构设计如图2.1所示&#xff0c;其采用STM32F103单片机作为控制器&#xff0c;结合ESP8266 WiFi通信模块、L9110电机驱动电路、OLED液晶、按键等构成整个系统。用户在使用时&#xff0c;可以通过按键或者手机APP设定直…

【Java 数据导出到 Word实现方案】使用EasyPOI 工具包进行简易的word操作

文章目录 前言工具包调研实现方案主要步骤&#xff1a;1. 导入 EasyPOI 依赖2. 创建 Word 文件3. 添加数据到 Word 文件4. 保存文件到本地 使用过程中可能遇到的问题总结 前言 最近业务方说周报、月报让他们很头疼&#xff0c;每次都要统计数据后&#xff0c;手动录入到word文…

【全栈开发】----Mysql基本配置与使用

本篇是在已下载Mysql的情况下进行的&#xff0c;若还未下载或未创建Mysql服务&#xff0c;请转到这篇: 2024 年 MySQL 8.0.40 安装配置、Workbench汉化教程最简易&#xff08;保姆级&#xff09;_mysql8.0.40下载安装教程-CSDN博客 本文对于mysql的操作均使用控制台sql原生代码…

pnpm介绍

pnpm 是一个快速、节省磁盘空间的 JavaScript 包管理工具&#xff0c;它与 npm 和 yarn 类似&#xff0c;但具有一些独特的优势。以下是 pnpm 的一些特点&#xff1a; 1. 高效的磁盘空间管理 pnpm 使用一种去重机制来存储依赖包。它将所有项目共享的依赖包保存在全局存储区&a…

某讯一面,感觉问Redis的难度不是很大

前不久&#xff0c;有位朋友去某讯面试&#xff0c;他说被问到了很多关于 Redis 的问题&#xff0c;比如为什么用 Redis 作为 MySQL 的缓存&#xff1f;Redis 中大量 key 集中过期怎么办&#xff1f;如何保证缓存和数据库数据的一致性&#xff1f;我将它们整理出来&#xff0c;…