C++ string 常用函数总结
头文件:#include<string>
[注]:文中关于个数的参数文档中为 size_type
型,更本质是 size_t
型,因为typedef size_t size_type
,而 size_t
在不同系统内实现不同,大概为 unsigned int
型,为简便起见,本文均写为 int
型。另外,string
的许多函数都有各种重载,本文所写的只是较常用的。
赋值
string
类型的变量可以直接赋值:string str = "hello world"; //可以直接赋值
cout << str << endl; //string 不支持 C 语言,因此输出只能使用 cout 不能使用 printf
输出:
hello world
使用
string
的构造函数来实现拷贝的效果:string substr = string(string str, int start, int num);
由此得到的
substr
是截取字符串str
从start
起num
个字符。关于子串还有函数
substr(int start, int num)
,其效果同上。举例如下:
//返回子字符串 substr
string str = "012345678";
string substr = str.substr(1,3);
cout << substr << endl; substr = string(str, 2, 5);
cout << substr << endl;
输出:
123
23456
长度
函数 string.size()
和 string.length()
均可返回本字符串长度,返回值类型为 int(size_t)
。
运算符
字符串连接 +
举例如下:
string str1 = "abc", str2 = "def";
str = str1 + str2;
cout << str << endl;
输出:
abcdef
字典序比较:
> < >= <= != ==
遍历/访问
使用下标
[]
访问同字符数组。
使用迭代器访问
举例如下:
string str = "hello world"; //可以直接赋值
printf("按元素下标访问:%c %c\n", str[0], str[str.size()-1]);
//可以按照元素下标访问 //通过迭代器 iterator 访问 迭代器类似于指针
printf("迭代器访问str:\t");
for(string::iterator it = str.begin(); it != str.end(); ++it)
{
printf("%c ", *it);
}
printf("\n");
printf("str.begin() = #%c#", *str.begin()); //迭代器类似于指针 要加 *
printf("str.end() = #%c#", *str.end());输出:
按元素下标访问:h d
迭代器访问str: h e l l o w o r l d
str.begin() = #h#str.end() = # #
增删改查
插入
string.insert(int pos, string str)
其作用为在字符串
string
第pos
个字符处插入字符串str
。删除
string.erase(int pos, int len)
其作用为从字符串
string
第pos
个字符处删除len
个字符。清空字符串
string.clear()
判断字符串是否为空
string.empty()
举例如下:
string str = "hello world"; //插入
str.insert(0, "Start "); //在开头插入
cout << "开头插入:" << str << endl;
str.insert(str.size(), " End."); //在末尾插入
cout << "末尾插入:" << str << endl;
str.insert(6, "Middle "); //在中间插入
cout << "中间插入:" << str << endl; //删除
str.erase(0,1); //删除 从第 0 位开始的 1 个
cout << "删除第一个元素:" << str << endl;
str.erase(0, 2); //删除 从第 0 位开始的 2 个
cout << "删除前两个元素:" << str << endl;
cout << str.empty() << endl;
str.clear(); //清空
cout << str.empty() << endl;
输出:
开头插入:Start hello world
末尾插入:Start hello world End.
中间插入:Start Middle hello world End.
删除第一个元素:tart Middle hello world End.
删除前两个元素:rt Middle hello world End.
0
1
替换
string.replace(int pos, int len, string temp)
其作用为替换
string
字符串从pos
起len
个字符为 字符串temp
。举例如下:string str = "123456";
string temp = "abc";
str.replace(0, 1, temp);
cout << str << endl;
输出为:
abc23456
查询
string.find()
本函数用于在字符串
string
中寻找字符或字符串,若找到则返回其第一个字符所在下标位置,若没有对应字符或字符串,则返回string.npos
,即-1
。举例如下:string str = "hello world"; int found = str.find("world");
if(found != str.npos) //npos = -1
{
printf("%d\n", found);
} found = str.find('l');
if(found != str.npos)
{
printf("%d\n", found);
} found = str.find('.');
if(found == str.npos)
printf("Not found!\n");
输出为:
6
2
Not found!
C++ string 常用函数总结的更多相关文章
- C++ string 常用函数
C++ String常用函数 一,类型别名 size_type 无符号整型 iterator 迭代器类型 const_iterator 只读迭代器 reverse_iterator 逆序迭代器 con ...
- C#string常用函数总结
补充: 1:在C语言里 char占1个字节 而在C#,Java里char占两个字节 数据库里char 中汉占两个字节 字母数字占一个字 2:string ...
- 【STL】string 常用函数
string类的构造函数: string(const char *s); //用c字符串s初始化 string(int n,char c); //用n个字符c初始化 此外,string类还支持默认构造 ...
- 【转】string常用函数
原文地址:http://hi.baidu.com/baowup/blog/item/3a27465c86d71546faf2c066.html/cmtid/de1ef3f0de7554a0a40f52 ...
- String 类的实现(5)String常用函数
2 #include<iostream> 3 #include<stdio.h> 4 #include<assert.h> 5 #include <iom ...
- stl string常用函数
string类的构造函数: string(const char *s); //用c字符串s初始化 string(int n,char c); //用n个字符c初始化 此外,string类还支持默认构造 ...
- C++中的string常用函数用法
标准c++中string类函数介绍 注意不是CString 之所以抛弃char*的字符串而选用C++标准程序库中的string类,是因为他和前者比较起来,不必 担心内存是否足够.字符串长度等等,而 ...
- c++标准库中的string常用函数总结《转》
标准C++中的string类的用法总结 相信使用过MFC编程的朋友对CString这个类的印象应该非常深刻吧?的确,MFC中的CString类使用起来真的非常的方便好用.但是如果离开了MFC框架,还有 ...
- STL string 常用函数(转)
string类的构造函数: string(const char *s); //用c字符串s初始化 string(int n,char c); //用n个字符c初始化 此外,string类还支持默认构造 ...
- c++中的string常用函数用法总结!
标准c++中string类函数介绍 注意不是CString 之所以抛弃char*的字符串而选用C++标准程序库中的string类,是因为他和前者比较起来,不必 担心内存是否足够.字符串长度等等,而且作 ...
随机推荐
- FilterConfig接口(Servlet)
Javax.Servet 包中提供了一个 FilterCofig 接口,它与 ServletConfig 接口相似,用于在过滤器初始化期间向其传递信息.FilterConfig 接口由容器实现,容器将 ...
- Nginx请求连接限制
目录 Nginx的请求限制 HTTP协议的连接与请求 连接限制 配置示例 做个演示: 请求限制 配置示例 基本指令 limit_req_zone limit_req zone 做个演示: Nginx的 ...
- find -or 用法
find /opt/IBM/WebSphere85/ -name *loggeter* - or -name *loggetter* | xargs rm -rf
- 学习JAVAWEB第五天
# 今日内容 1. JavaScript基础 ## JavaScript: * 概念: 一门客户端脚本语言 * 运行在客户端浏览器中的.每一个浏览器都有JavaScript的解析引擎 * 脚本语言:不 ...
- Linux 安装和 连接xshell
一.介绍和安装 /*一.linux:? 为什么要学习它. 常见的操作系统? 1.windows, linux,mac 使用命令行进行操作 Windows cmd Linux 和Mac 中的命令行是 s ...
- Java的代理机制
Java的代理机制 使用代理 Proxzy 可以在运行时创建一组给定接口的新类,这种功能只有在编译时无法确定需要实现哪种接口时才需要使用. 1. 使用代理的时机 假如有一个表示接口的 Class 对象 ...
- 什么是Segue
Storyboard上每一根用来界面跳转的线,都是一个UIStoryboardSegue对象(简称Segue) Segue的属性 每一个Segue对象,都有3个属性唯一标识@property (non ...
- axios 之cancelToken原理以及使用
看axios文档的时候发现cancelToken这个东东,这个是用来取消ajax请求的,一般原生的话用的是abort()这个方法.看到这玩意的第一感觉是用起来有点麻烦,但是看了内部实现,发现还是比较有 ...
- Class.getResource和ClassLoader.getResource的路径写法
Java中取资源时,经常用到Class.getResource和ClassLoader.getResource,这里来看看他们在取资源文件时候的路径问题. Class.getResource(Stri ...
- Apache Http Server与Tomcat6 的负载均衡(二)
一般来说,实现Apache与Tomcat6的负载均衡有两种方式,一种是使用mod_jk,另一种是使用mod_proxy模块.本文只讨论mod_jk方式. 无论使用哪种方式,一般都要经过以下这几个步骤( ...