详解C++字符串常用操作函数(查找、插入、截取、删除等)
更新时间:2021年01月12日 09:50:32 作者:Bulut0907
这篇文章主要介绍了C++字符串常用操作函数(查找、插入、截取、删除等),本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
1. 字符串查找函数
1.1 find 函数
原型为:unsigned int find(const basic_string &str) const;
作用:查找并返回str在本串中第一次出现的位置,位置从0开始
例子如下:
#include <iostream> using namespace std; int main() { string str = "i love china. china love me"; string find_str = "love"; cout << str.find(find_str); // 2 return 0; }
2. 字符串插入函数
2.1 append
- 函数原型为:
string append(const char* s) ;
- 作用:将字符串s添加到本串尾,改变本串
- 例子如下:
#include <iostream> using namespace std; int main() { string str = "i love china. "; char append_str[] = "china love me"; cout << str.append(append_str) << endl; // i love china. china love me cout << str << endl; // i love china. china love me return 0; }
2.2 insert
- 函数原型为:
string & insert(unsigned int p0, const char * s);
- 作用:将s所指向的字符串插入在本串中位置p0之前,改变本串
- 例子如下:
#include <iostream> using namespace std; int main() { string str = "i love . china love me"; char insert_str[] = "china"; cout << str.insert(7, insert_str) << endl; // i love china. china love me cout << str << endl; // i love china. china love me return 0; }
3. 字符串截取函数
3.1 substr
- 函数原型为:
string substr(unsigned int pos, unsigned int n) const;
- 作用:取子串,取本串中位置pos开始的n个字符,构成新的string类对象作为返回值
- 例子如下:
#include <iostream> using namespace std; int main() { string str = "i love china. china love me"; cout << str.substr(2, 22) << endl; // love china. china love return 0; }
4. 字符串删除函数
4.1 函数
- 原型1为:
string & erase(unsigned int pos);
- 作用1:删除本串pos位置及之后的所有字符,改变本串
- 函数原型2为:
string & erase(unsigned int pos, unsigned int n);
- 作用2:删除本串pos位置及之后的共n个字符,改变本串
- 例子如下:
#include <iostream> using namespace std; int main() { string str1 = "i love china. china love me"; cout << str1.erase(12) << endl; // i love china cout << str1 << endl; // i love china string str2 = "i love china. china love me"; cout << str2.erase(7, 18) << endl; // i love me cout << str2 << endl; // i love me return 0; }
到此这篇关于C++字符串常用操作函数(查找、插入、截取、删除等)的文章就介绍到这了,更多相关C++字符串操作函数内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
C++ JSON库 nlohmann::basic_json::array 的用法示例详解
nlohmann::json是一个C++的JSON库,它提供了一种容易和直观的方法来处理JSON数据,nlohmann::json::array()是用来创建一个JSON数组的方法,这篇文章主要介绍了C++ JSON库nlohmann::basic_json::array的用法,需要的朋友可以参考下2023-06-06基于C++实现kinect+opencv 获取深度及彩色数据
本文的主要思想是Kinect SDK 读取彩色、深度、骨骼信息并用OpenCV显示,非常的实用,有需要的小伙伴可以参考下2015-12-12
最新评论