C++ Strings(字符串)
| Constructors | 构造函数,用于字符串初始化 |
| Operators | 操作符,用于字符串比较和赋值 |
| append() | 在字符串的末尾添加文本 |
| assign() | 为字符串赋新值 |
| at() | 按给定索引值返回字符 |
| begin() | 返回一个迭代器,指向第一个字符 |
| c_str() | 将字符串以C字符数组的形式返回 |
| capacity() | 返回重新分配空间前的字符容量 |
| compare() | 比较两个字符串 |
| copy() | 将内容复制为一个字符数组 |
| data() | 返回内容的字符数组形式 |
| empty() | 如果字符串为空,返回真 |
| end() | 返回一个迭代器,指向字符串的末尾。(最后一个字符的下一个位置) |
| erase() | 删除字符 |
| find() | 在字符串中查找字符 |
| find_first_of() | 查找第一个与value中的某值相等的字符 |
| find_first_not_of() | 查找第一个与value中的所有值都不相等的字符 |
| find_last_of() | 查找最后一个与value中的某值相等的字符 |
| find_last_not_of() | 查找最后一个与value中的所有值都不相等的字符 |
| get_allocator() | 返回配置器 |
| insert() | 插入字符 |
| length() | 返回字符串的长度 |
| max_size() | 返回字符的最大可能个数 |
| rbegin() | 返回一个逆向迭代器,指向最后一个字符 |
| rend() | 返回一个逆向迭代器,指向第一个元素的前一个位置 |
| replace() | 替换字符 |
| reserve() | 保留一定容量以容纳字符串(设置capacity值) |
| resize() | 重新设置字符串的大小 |
| rfind() | 查找最后一个与value相等的字符(逆向查找) |
| size() | 返回字符串中字符的数量 |
| substr() | 返回某个子字符串 |
| swap() | 交换两个字符串的内容 |
C++ Strings(字符串)的更多相关文章
- [LeetCode] Add Strings 字符串相加
Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2. ...
- [LeetCode] Multiply Strings 字符串相乘
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: Th ...
- Codeforces Round #358 (Div. 2) D. Alyona and Strings 字符串dp
题目链接: 题目 D. Alyona and Strings time limit per test2 seconds memory limit per test256 megabytes input ...
- 【LeetCode每天一题】Multiply Strings(字符串乘法)
Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and ...
- [LeetCode] 43. Multiply Strings ☆☆☆(字符串相乘)
转载:43. Multiply Strings 题目描述 就是两个数相乘,输出结果,只不过数字很大很大,都是用 String 存储的.也就是传说中的大数相乘. 解法一 我们就模仿我们在纸上做乘法的过程 ...
- LeetCode OJ:Multiply Strings (字符串乘法)
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: Th ...
- [Leetcode] Multiply strings 字符串对应数字相乘
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: Th ...
- Multiply Strings(字符串乘法模拟,包含了加法模拟)
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: Th ...
- [LeetCode] 415. Add Strings 字符串相加
Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2. ...
- [LeetCode] 43. Multiply Strings 字符串相乘
Given two non-negative integers num1 and num2represented as strings, return the product of num1 and ...
随机推荐
- MySQL--索引条件下推优化
http://blog.163.com/li_hx/blog/static/1839914132015782821512/ 一 什么是“索引条件下推” “索引条件下推”,称为 Index Condit ...
- 加密数据的填充方式(Padding)
1.填充数据为填充字节的长度 这种填充方式中,填充字符串由一个字节序列组成,每个字节填充该字节序列的长度.假定块长度为8,原文数据长度9,则填充字节数等于0x07:如果明文数据长度为8的整数倍,则填充 ...
- QT程序在windows下部署发布
转载:http://www.cnblogs.com/Fan_Fan/archive/2010/05/29/1746860.html QT程序在windows下部署发布 以下包括了部分网上收集的,以及q ...
- Java_Shell多线程
#!/bin/bash source ~/.bashrc fun(){ echo "fun is begin.timeNum:$timeNum" local timeNum=$ s ...
- laravel 5.0 artisan 命令列表(中文简体)
#php artisan list Laravel Framework version Usage: [options] command [arguments] Options(选项): --help ...
- Hadoop从2.2.0到2.7
Hadoop2.2.0 GA release 通用版本,Hadoop2.2.0就是一个通用版本 Hadoop2.2.0是从Hadoop1.1.0升级过来的,增加了以下特性: 1.增加了YARN: 2. ...
- InAction-编译hadoop2.5.2
1.环境 2.JDK ... 3.工具 1)下载maven解压加入环境变量 2)安装编译工具 yum install make cmake zlib-devel openssl-devel gcc g ...
- IOS Xcode 无法识别IOS device 突然发生的
今天 我用真机mini好好地 ,再想测试一下iphone 4 发生了意外 两个测试机都找不到设备了 但是 都在充电 还能连接 itune !!!! 我郁闷了 解决办法 是 Mac iTunes 重新 ...
- js兼容性问题
javscript 浏览器兼容性问题: scrollTop = document.documentElement.scrollTop || document.body.scrollTop; scrol ...
- Android Studio常用快捷键汇总(mac)
查看原文:http://blog.csdn.net/u010818425/article/details/52266195 mac上按键符号 ⌥ : option / alt ⇧ : shift ⌃ ...