欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

详解C++字符串常用操作函数(查找、插入、截取、删除等)

时间:2021-06-26 08:46:07|栏目: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;
}

上一篇:在输入输出字符串时scanf(),printf()和gets(),puts()的区别浅谈

栏    目:C代码

下一篇:C++实现删除txt文件中指定内容的示例代码

本文标题:详解C++字符串常用操作函数(查找、插入、截取、删除等)

本文地址:http://www.codeinn.net/misctech/148248.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有