C++标准库类型string基本成员函数用法

标准库类型string,基本函数成员用法详细讲解


文章目录

  • 标准库类型string,基本函数成员用法详细讲解
  • 一、头文件
  • 二、string构造函数
  • 三、string赋值函数assign
  • 四、string拼接函数append
  • 五、string查找函数 find和 rfind
  • 六、string替换函数 replace
  • 七、string比较函数 compare
  • 八、string字符存取函数 at
  • 九、string字符串大小函数 size
  • 十、string插入函数 insert
  • 十一、string删除函数 erase
  • 十二、string获取子串substr


一、头文件

	#include <string>using std::string;

二、string构造函数

构造函数原型

  1. string();     //创建一个空字符串
  2. string(const char* s);     //使用字符串s初始化
  3. string(const string& str);     //使用str对象初始化
	string str1 = "hello";string str2(str1);//结果str2 = "hello"
  1. string(int n, char c);     //使用n个字符c初始化
	string str(5, 'w');//str相当于 str = "wwwww"

三、string赋值函数assign

由于string可以当作数据类型,string类型,通用的运算符都可以直接使用这里不展示,这是operator运算符重载。

assign函数原型

  1. string& assign(const char* s);
    //将字符串s赋值给当前的字符串
  2. string& assign(const char* s, int n);
    //将字符串s的前n的字符赋给当前的字符串
	string str;str.assign("hello");//结果 str = "hello"
  1. string& assign(const string& str);
    //将字符串str赋值给当前的字符串
	string str1("hello");string str2;str2.assign(str1);//结果 str2 = str1 = "hello"
  1. string& assign(int n, char c);
    //用n个字符c赋值给当前的字符串
	string str;str.assign(5, 'w');//str相当于 str = "wwwww"

四、string拼接函数append

由于string可以当作数据类型,string类型,通用的运算符都可以直接使用这里不展示,这是operator运算符重载。

append函数原型

  1. string& append(const char* s);
    //将字符串s连接到当前字符串结尾
	string str("hello");str.append("world");//结果 str = "helloworld"
  1. string& append(const char* s, int n);
    //将字符串s的前n个字符连接到当前字符串结尾
	string str("hello");str.append("worldwww", 6);//结果 str = "helloworldw"
  1. string& append(const string& str);
    //将字符串str连接到当前字符串结尾
	string str1("hello");string str2("world");str1.append(str2);//结果 str2 = "helloworld"
  1. string& append(const string& str , int pos, int n);
    //将字符串str中从下标pos开始的n个字符连接到当前字符串结尾
	string str1("hello");string str2("wearworldea");str1.append(str2, 3, 5);//结果 str2 = "hellorworl"

五、string查找函数 find和 rfind

find 和 rfind函数原型

  1. int find(const string& str, int pos = 0) const;
    //查找str第一次出现位置 从下标pos开始查找
	string str1("helloworld");string str2("world");int pos = str1.find(str2, 2);//结果 pos = 5
  1. int find(const char* s,int pos = 0) const;
    //查找s第一次出现位置,从下标pos开始查找
	string str("helloworld");int pos = str.find("world", 2);//结果 pos = 5
  1. int find(const char* s, int pos, int n) const;
    //从下标pos位置查找s的前n个字符第一次位置
	string str1("helloworld");string str2("orld");int pos = str1.find(str2, 1, 3);//结果 pos = 6
  1. int find(const char c, int pos = 0) const;
    //查找字符c第一次出现位置
	string str("helloworld");int pos = str.find('o', 2);//结果 pos = 4
  1. int rfind(const string& str, int pos = npos) const;
    //查找str最后一次位置,从pos开始查找(上面find有案例)

  2. int rfind(const chan* s,int pos = npos) const;
    //从下标pos查找s的前n个字符最后一次位置(上面find有案例)

  3. int rfind(const char* s,int pos, int n) const;
    //查找字符c最后一次出现位置(上面find有案例)

  4. int rfind(const char c,int pos = 0) const;
    //查找字符c最后一次出现位置(上面find有案例)

find 和 rfind 的区别:fing的是从左往右查找,而rfind是从右向左查找


六、string替换函数 replace

replace函数原型

  1. string& replace(int pos, int n, const string& str);
    //替换从下标pos开始n个字符为字符串str
	string str1("hello");string str2("helloworld");str2.replace(5, 2, str1);//结果 str2 = "hellohellorld"
  1. string& replace(int pos, int n,const char* s);
    //替换从下标pos开始的n个字符为字符串s
	string str("helloworld");str.replace(5, 2, "hello");//结果 str = "hellohellorld"

七、string比较函数 compare

比较方式:字符串比较是按字符的ASCII码进行对比
字符串比较 = 返回 0
字符串比较 > 返回 1
字符串比较 < 返回 -1

compare函数原型

  1. int compare(const string &s) const;
    //与字符串s比较
	string str1("hello");string str2("helloworld");int i = str1.compare(str2);//结果 i = -1
  1. int compare(const char *s) const;
    //与字符串s比较
	string str("helloworld");int i = str.compare("hello");//结果 i = 1

八、string字符存取函数 at

由于string可以当作数据类型,string类型,可以用运算符 [ ] 访问这里不展示,这是operator[]重载。

at函数原型

  1. .char& at(int pos);
    //通过at方法获取下标pos字符
	string str("helloworld");char c = str.at(5);//结果 c = 'w'

九、string字符串大小函数 size

size函数原型

  1. int size();
    //求字符串的大小,也是元素个数
	string str("helloworld");int n = str.size();//结果 n = 10

十、string插入函数 insert

insert函数原型

  1. string& insert(int pos, const char* s);
    //从下标pos插入字符串s
	string str("helloworld");str.insert(5, "hello");//结果 str = "hellohelloworld"
  1. string& insert(int pos, const string& str);
    //从下标pos插入字符串str
	string str1("helloworld");string str2("hello");str1.insert(5,str2)//结果 str1 = "hellohelloworld"
  1. string& insert(int pos, int n, char c);
    //在指定位置下标pos插入n个字符c
	string str("helloworld");str.insert(5, 2, 'z');//结果 str = "hellozzworld"

十一、string删除函数 erase

erase函数原型

  1. string& erase(int pos, int n = npos);
    //删除从下标pos开始的n个字符
	string str("helloworld");str.erase(1, 8);//结果 str = "hd"

十二、string获取子串substr

substr函数原型

string substr(int pos = 0, int n = npos) const;
//返回由pos开始的n个字符组成的

	string str("helloworld");string sub = str.substr(3, 3);//结果 sub = "low"

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/191093.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

二叉树OJ题目——C语言

LeetCode 104.二叉树的最大深度 1. 题目描述&#xff1a; 给定一个二叉树 root &#xff0c;返回其最大深度。 二叉树的 最大深度 是指从根节点到最远叶子节点的最长路径上的节点数。 示例 1&#xff1a; 输入&#xff1a;root [3,9,20,null,null,15,7] 输出&#xff1a;3示例…

CSS浅谈动画性能

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 目的一、举个栗子二、性能分析1.从图层分析2.性能分析 总结 目的 为了探究使用动画时&#xff0c;『transform』和『width、height、margin等』的差异 一、举个栗子…

【1】基于多设计模式下的同步异步日志系统

1. 项目介绍 本项⽬主要实现⼀个⽇志系统&#xff0c; 其主要⽀持以下功能: • ⽀持多级别⽇志消息 • ⽀持同步⽇志和异步⽇志 • ⽀持可靠写⼊⽇志到控制台、⽂件以及滚动⽂件中 • ⽀持多线程程序并发写⽇志 • ⽀持扩展不同的⽇志落地⽬标地 2. 开发环境 • CentOS 7 • vs…

Prism.js实现代码高亮并添加行号

先上效果: Prism.js Prism 是一款轻量、可扩展的代码语法高亮库&#xff0c;使用现代化的 Web 标准构建。 使用 Prismjs 可以快速为网站添加代码高亮功能&#xff0c;支持超过113中编程语言&#xff0c;还支持多种插件&#xff0c;是简洁、高效的代码高亮解决方案。 为什么选…

C++跨目录include问题

不同文件夹下使用预处理器指示符#include 使用举例 假设我们有如下一个工程&#xff0c;其中包含了几个源代码和头文件&#xff0c;其中main.cpp是主源代码文件&#xff0c;里面含有main函数&#xff1a; 在foldder main中包含&#xff1a;func4.hpp&#xff0c;func4.cpp&am…

1.0 十大经典排序算法

分类 算法 本系列算法整理自&#xff1a;https://github.com/hustcc/JS-Sorting-Algorithm 同时也参考了维基百科做了一些补充。 排序算法是《数据结构与算法》中最基本的算法之一。 排序算法可以分为内部排序和外部排序&#xff0c;内部排序是数据记录在内存中进行排序&#…

Python遥感开发之批量镶嵌

Python遥感开发之批量镶嵌 0.ArcGis镶嵌1.Arcpy实现镶嵌1.1 Arcpy实现单个镶嵌1.2 Arcpy实现批量镶嵌 2.GDAL实现镶嵌 前言&#xff1a;主要介绍了遥感数据的镶嵌&#xff0c;其中包括使用ArcGis如何完成镶嵌&#xff0c;如何使用Arcpy和GDAL完成镶嵌。 0.ArcGis镶嵌 是ArcGis…

PyLMKit(2):快速开始大模型应用开发

快速开始 GitHub&#xff1a;https://github.com/52phm/pylmkitPyLMKit 官方教程 PyLMKit应用&#xff08;online application&#xff09;English document中文文档 0.下载安装 pip install -U pylmkit --user1.设置 API KEY 一个方便的方法是创建一个新的.env文件&#…

mysql中int(10)和char(10),varchar(10)区别是什么?

整体对比表格 int(10)char(10)varchar(10)存储方式二进制整数字符集编码的字符串字符集编码的字符串存储空间固定为4字节固定为10字节根据实际使用长度变化&#xff0c;通常更小存储内容整数字符串(用空格填充)字符串(不需要填充)比较大小整数的比较字符串的字典序比较字符串的…

物流单管理系统软件物流单打印,物流单打印模板,佳易王物流快运单管理软件下载

物流单管理系统软件物流单打印&#xff0c;物流单打印模板&#xff0c;佳易王物流快运单管理软件下载 软件试用版下载或技术支持可以点击最下方官网卡片 上图&#xff1a;在物流开单时&#xff0c;可以先输入电话&#xff0c;如果之前存在该托运人信息&#xff0c;则可以一键…

高德Map

使用 官网&#xff1a;JS API 结合Vue使用 npm i amap/amap-jsapi-loader --saveimport AMapLoader from amap/amap-jsapi-loader;marker的属性、事件、方法 https://lbs.amap.com/api/javascript-api-v2/documentation#marker 自定义marker 为创建的 Marker 指定自定义图…

Motion 5 for Mac,释放创意,打造精彩视频特效!

Motion 5 for Mac是一款强大的视频后期特效处理软件&#xff0c;为Mac用户提供了无限的创意可能性。无论你是专业的影视制作人&#xff0c;还是想为个人视频添加独特特效的爱好者&#xff0c;Motion 5都能满足你的需求&#xff0c;让你的视频脱颖而出。 Motion 5提供了丰富多样…

【滑动窗口】将X减到0的最小操作数

将X减到0的最小操作数 1658. 将 x 减到 0 的最小操作数 - 力扣&#xff08;LeetCode&#xff09; 文章目录 将X减到0的最小操作数题目描述算法原理代码编写Java代码编写C代码编写 题目描述 给你一个整数数组 nums 和一个整数 x 。每一次操作时&#xff0c;你应当移除数组 num…

webGIS使用JS,高德API完成的智慧校园项目路径规划

代码实现&#xff1a; //通过geojson对象来管理覆盖物&#xff0c;显示点geojson.addOverlay(marker)//保存数据&#xff08;将geojson对象转换成标准的GeoJSON格式对象&#xff09;saveData(geojson.toGeoJSON())})//从localstroage中读取数据function getData(){if(!localSto…

【HarmonyOS开发】ArkTs编译为SO包的流程记录

1、创建一个Static Library的静态模块 2、编写我们的SO控件 2.1 编译配置 {"apiType": "stageMode","buildOption": {"artifactType": "obfuscation"},"targets": [{"name": "default",&qu…

【FISCO BCOS】二十、多机部署区块链

目录 一、准备环境 二、开始搭建 三、检查节点 1.检查节点进程

Linux:查看端口占用的进程

命令 netstat -tunlp可以从图中看到&#xff0c;端口被那个进程占用&#xff0c;对应进程的pid是多少。

dart语言多线程遇到的问题:Isolate.spawnUri(),在真机调试中无法生成隔离

报错原因 [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: IsolateSpawnException: Unable to spawn isolate: Unsupported isolate URI: 未处理的异常&#xff1a;IsolateSpawnException&#xff1a;无法生成隔离&#xff1a;不支持隔离 URI&…

基于eBPF实现监控ssh登陆功能

以下是一个基于eBPF监控SSH登录的程序的示例代码&#xff0c;使用Python编写&#xff1a; python import os import ctypes from bcc import BPF # eBPF程序 bpf_text """ #include <uapi/linux/ptrace.h> #include <linux/sched.h> struct ssh…

递归实例化导致的栈溢出问题【简直蠢得出奇】

问题描述 今天在练习数据库增删改查&#xff0c;体验三层架构思想时&#xff0c;随便写了点DAO层代码&#xff0c;但服务器运行时竟然爆出了栈溢出的问题&#xff0c;说实话&#xff0c;空指针问题我还能放着耐心去代码里找找问题&#xff0c;但这个栈溢出&#xff0c;我之前就…