STL:字符串用法详解
字符串是程序设计中最复杂的变成内容之一。STL string类提供了强大的功能,使得许多繁琐的编程内容用简单的语句就可完成。string字符串类减少了C语言编程中三种最常见且最具破坏性的错误:超越数组边界;通过违背初始化或被赋以错误值的指针来访问数组元素;以及在释放了某一数组原先所分配的存储单元后仍保留了“悬挂”指针。
string类的函数主要有:
Member functions
- (constructor)
- Construct string object (public member function )
- (destructor)
- String destructor (public member function )
- operator=
- String assignment (public member function )
Iterators:
- begin
- Return iterator to beginning (public member function )
- end
- Return iterator to end (public member function )
- rbegin
- Return reverse iterator to reverse beginning (public member function )
- rend
- Return reverse iterator to reverse end (public member function )
- cbegin
- Return const_iterator to beginning (public member function )
- cend
- Return const_iterator to end (public member function )
- crbegin
- Return const_reverse_iterator to reverse beginning (public member function )
- crend
- Return const_reverse_iterator to reverse end (public member function )
Capacity:
- size
- Return length of string (public member function )
- length
- Return length of string (public member function )
- max_size
- Return maximum size of string (public member function )
- resize
- Resize string (public member function )
- capacity
- Return size of allocated storage (public member function )
- reserve
- Request a change in capacity (public member function )
- clear
- Clear string (public member function )
- empty
- Test if string is empty (public member function )
- shrink_to_fit
- Shrink to fit (public member function )
Element access:
- operator[]
- Get character of string (public member function )
- at
- Get character in string (public member function )
- back
- Access last character (public member function )
- front
- Access first character (public member function )
Modifiers:
- operator+=
- Append to string (public member function )
- append
- Append to string (public member function )
- push_back
- Append character to string (public member function )
- assign
- Assign content to string (public member function )
- insert
- Insert into string (public member function )
- erase
- Erase characters from string (public member function )
- replace
- Replace portion of string (public member function )
- swap
- Swap string values (public member function )
- pop_back
- Delete last character (public member function )
String operations:
- c_str
- Get C string equivalent (public member function )
- data
- Get string data (public member function )
- get_allocator
- Get allocator (public member function )
- copy
- Copy sequence of characters from string (public member function )
- find
- Find content in string (public member function )
- rfind
- Find last occurrence of content in string (public member function )
- find_first_of
- Find character in string (public member function )
- find_last_of
- Find character in string from the end (public member function )
- find_first_not_of
- Find absence of character in string (public member function )
- find_last_not_of
- Find non-matching character in string from the end (public member function )
- substr
- Generate substring (public member function )
- compare
- Compare strings (public member function )
Member constants
- npos
- Maximum value for size_t (public static member constant )
Non-member functions overloads
- operator+
- Concatenate strings (function )
- relational operators
- Relational operators for string (function )
- swap
- Exchanges the values of two strings (function )
- operator>>
- Extract string from stream (function )
- operator<<
- Insert string into stream (function )
- getline
- Get line from stream into string (function )
1.string对象的定义和初始化
- string s1;//默认构造函数,s1为空串
- string s2(s1);//将s2初始化为s1的一个副本
- string s3("value");//将s3初始化为value
- string s4(n,'c');//将s4初始化为字符'c'的n个副本
- string s5(s4,0,3)//从s4中下标为0的字符开始,连续取3个字符构成s5
- string s6 = s5 + "value";//value 接在s5后面,注意+操作符的左右操作数至少有一个是string类型的
- 迭代器创建, 由于可将string看作字符的容器对象,因此可以给string类的构造函数传递两个迭代器,将它们之间的数据复制到心的string对象中。
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
- string s1("How are you");
- string s2(s1.begin(),s1.end());
- string s3(s1.begin()+4,s1.begin()+7);
- cout<<s1<<endl;
- cout<<s2<<endl;
- cout<<s3<<endl;
- return 0;
- }
2.string 对象的读写
- 通过cin从标准输入中读取,cin忽略开题所有的空白字符,读取字符直至再次遇到空白字符,读取终止。
- 用getline读取整行文本,getline函数接受两个参数:一个输入流对象和一个string对象。getline函数从输入流的下一行读取,并保存读取的内容到string中,但不包括换行符。和输入操作符不一样的是,getline并不忽略开头的换行符。即便它是输入的第一个字符,getline也将停止读入并返回。如果第一个字符就是换行符,则string参数将被置为空string。
3.string对象的插入操作
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
- string s1("do");
- cout<<"Initial size is:"<<s1.size()<<endl;
- s1.insert(0,"How ");
- s1.append(" you");
- s1 = s1 + " do ?";
- cout<<"Final size is:"<<s1.size()<<endl;
- cout<<s1<<endl;
- return 0;
- }
程序运行结果如下:

- insert函数,第一个参数表明插入源串的位置,第二个参数表面要插入的字符串,因此利用该函数可以实现串首、串尾及任意位置处的字符串插入功能。
- append函数,仅有一个输入参数,在源字符串尾部追加该字符串。
- 利用+实现字符串的连接,从而创建新的字符串。
4.替换操作
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
- string s1("I love you forever !");
- cout<<"替换前:"<<s1<<endl;
- s1.replace(7,3,"dachun");
- cout<<"替换后"<<s1<<endl;
- return 0;
- }
程序运行结果如下:

5.查询操作
- string::npos:这是string类中的一个成员变量,一般应用在判断系统查询函数的返回值上,若等于该值,表明没有符合查询条件的结果值。
- find函数:在一个字符串中查找指定的单个字符或字符组。如果找到,就返回首次匹配的开始位置;如果没有找到匹配的内容,则返回string::npos。一般有两个输入参数,一个是待查询的字符串,一个是查询的起始位置,默认起始位置为0.
- find_first_of函数:在一个字符串中进行查找,返回值是第一个与指定字符串中任何字符匹配的字符位置;如果没有找到匹配的内容,则返回string::npos。一般有两个输入参数,一个是待查询的字符串,一个是查询的起始位置,默认起始位置为0.
- find_last_of函数:在一个字符串中进行查找,返回值是最后一个与指定字符串中任何字符匹配的字符位置;如果没有找到匹配的内容,则返回string::npos。一般有两个输入参数,一个是待查询的字符串,一个是查询的起始位置,默认起始位置为0.
- find_first_not_of函数:在一个字符串中进行查找,返回值是第一个与指定字符串中任何字符都不匹配的字符位置;如果没有找到匹配的内容,则返回string::npos。一般有两个输入参数,一个是待查询的字符串,一个是查询的起始位置,默认起始位置为0.
- find_last_not_of函数:在一个字符串中进行查找,返回下标值最大的与指定字符串中任何字符都不匹配的字符位置;如果没有找到匹配的内容,则返回string::npos。一般有两个输入参数,一个是待查询的字符串,一个是查询的起始位置,默认起始位置为0.
- rfind函数:对一个串从尾至头查找指定的单个字符或字符组,如果找到,就返回首次匹配的开始位置;如果没有找到匹配的内容,则返回string::npos。一般有两个输入参数,一个是待查询的字符串,一个是查询的起始位置,默认起始位置为0.
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
- string s1("what's your name? my name is TOM. How do you do? Fine,thanks.");
- int n = s1.find("your");
- cout<<"the first your pos:"<<n<<endl;
- n = s1.find("you",15);
- cout<<"the first you pos begin from 15:"<<n<<endl;
- n = s1.find_first_of("abcde");
- cout<<"find pos when character within abcde:"<<n<<endl;
- n = s1.find_first_of("abcde",3);
- cout<<"find pos when character within abcde from third character:"<<n<<endl;
- return 0;
- }
程序运行结果如下:

6.删除字符操作
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
- string s1("what's your name? my name is TOM. How do you do? Fine,thanks.");
- s1.erase(s1.begin(),s1.begin()+17);
- cout<<"after erase to s1 is:"<<s1<<endl;
- string s2 = "i love you forever!";
- s2.erase(s2.begin(),s2.end());
- cout<<"after erase to s2 is"<<s2<<endl;
- return 0;
- }
程序运行结果如下:

7.比较操作
STL:字符串用法详解的更多相关文章
- C#的String.Split 分割字符串用法详解的代码
代码期间,把代码过程经常用的内容做个珍藏,下边代码是关于C#的String.Split 分割字符串用法详解的代码,应该对码农们有些用途. 1) public string[] Split(params ...
- STL之一:字符串用法详解
转载于:http://blog.csdn.net/longshengguoji/article/details/8539471 字符串是程序设计中最复杂的变成内容之一.STL string类提供了强大 ...
- STL map 常见用法详解
<算法笔记>学习笔记 map 常见用法详解 map翻译为映射,也是常用的STL容器 map可以将任何基本类型(包括STL容器)映射到任何基本类型(包括STL容器) 1. map 的定义 / ...
- C++中的STL中map用法详解(转)
原文地址: https://www.cnblogs.com/fnlingnzb-learner/p/5833051.html C++中的STL中map用法详解 Map是STL的一个关联容器,它提供 ...
- PHP截取字符串函数substr()函数实例用法详解
在PHP中有一项非常重要的技术,就是截取指定字符串中指定长度的字符.PHP对于字符串截取可以使用PHP预定义函数substr()函数来实现.下面就来介绍一下substr()函数的语法及其应用. sub ...
- STL stack 常见用法详解
<算法笔记>学习笔记 stack 常见用法详解 stack翻译为栈,是STL中实现的一个后进先出的容器.' 1.stack的定义 //要使用stack,应先添加头文件#include &l ...
- STL priority_queue 常见用法详解
<算法笔记>学习笔记 priority_queue 常见用法详解 //priority_queue又称优先队列,其底层时用堆来实现的. //在优先队列中,队首元素一定是当前队列中优先级最高 ...
- STL queue 常见用法详解
<算法笔记>学习笔记 queue 常见用法详解 queue翻译为队列,在STL中主要则是实现了一个先进先出的容器. 1. queue 的定义 //要使用queue,应先添加头文件#incl ...
- STL string 常见用法详解
string 常见用法详解 1. string 的定义 //定义string的方式跟基本数据类型相同,只需要在string后跟上变量名即可 string str; //如果要初始化,可以直接给stri ...
随机推荐
- Java并发编程(一)-为什么要并发
并发所带来的好处 1. 并发在某些情况(并不是所有情况)下可以带来性能上的提升 1) 提升对CPU的使用效率 提升多核CPU的利用率:一般来说一台主机上的会有多个CPU核心,我们可以创建多个线程,理论 ...
- Node.js 流
稳定性: 2 - 不稳定 流是一个抽象接口,在 Node 里被不同的对象实现.例如request to an HTTPserver 是流,stdout 是流.流是可读,可写,或者可读写.所有的流是 E ...
- PHP Misc. 函数
PHP 杂项函数简介 我们把不属于其他类别的函数归纳到杂项函数类别. 安装 杂项函数是 PHP 核心的组成部分.无需安装即可使用这些函数. Runtime 配置 杂项函数的行为受 php.ini 文件 ...
- C++编译连接过程中关于符号表的报错分析
是这样的,在学习郑莉老师的多文件结构和编译预处理命令章节时候,看到书里有这么一张图描述如下:#include指令作用是将指定的文件嵌入到当前源文件中#include指令所在的位置. 然后我就想5_10 ...
- 使用Docker搭建GitLab
使用docker-compose快速启动GitLab.(当然前提是你先安装docker-compose,安装方式见博客:http://blog.csdn.net/yulei_qq/article/de ...
- MyEclipse中查看struts_spring_hibernate源码
1.spring查看源码 首先下载对应的源码包 如:spring-framework-2.5.6-with-dependencies.zip 打开spring-framework-2.5.6\di ...
- Apache ActiveMQ实战(2)-集群
ActiveMQ的集群 内嵌代理所引发的问题: 消息过载 管理混乱 如何解决这些问题--集群的两种方式: Master slave Broker clusters ActiveMQ的集群有两种方式: ...
- Objective-C构造方法
Objective-C构造方法 构造方法:用来初始化的方法 创建对象的原理 之前我们创建对象的方式一直是使用[Xxx new] 但是使用 new 创建的对象,都是给我们默认做了初始化的. 有的时候,我 ...
- self关键字
self关键字 self:当前类/对象的指针(指向当前对象/方法调用者) 作用1 当类里有变量名和成员变量名一样的时候,可以使用self区分 例: 我们写一个人的类,有一个年龄属性,在get方法里,我 ...
- Android全屏截图的方法,返回Bitmap并且保存在SD卡上
Android全屏截图的方法,返回Bitmap并且保存在SD卡上 今天做分享,需求是截图分享,做了也是一个运动类的产品,那好,我们就直接开始做,考虑了一下,因为是全屏的分享,所有很自然而然的想到了Vi ...