std::string删除首字符

查了下std::string的使用手册,才知道string删除字符只有erase成员方法,但是这个方法提供了3个重载函数,如下:

 string& erase ( size_t pos = 0, size_t n = npos );
iterator erase ( iterator position );
iterator erase ( iterator first, iterator last );  Erase characters from stringErases a part of the string content, shortening the length of the string.The characters affected depend on the member function version used:string& erase ( size_t pos = 0, size_t n = npos ); 
Erases a sequence of n characters starting at position pos. Notice that both parameters are optional: with only one argument, the function deletes everything from position pos forwards, and with no arguments, the function deletes the entire string, like member clear. 
iterator erase ( iterator position ); 
Erases the character referred by the iterator position. Only one character is affected. 
iterator erase ( iterator first, iterator last ); 
Erases all the characters between first and last. Parameters
pos 
Position within the string of the first character to be erased.
If the position passed is past the end of the string, an out_of_range exception is thrown. n 
Amount of characters to be removed. It may remove less characters if the end of the string is reached before the n characters have been erased. The default value of npos indicates that all the characters until the end of the string should be erased.
size_t is an unsigned integral type. 
position 
Iterator of the member type string::iterator referring to a signle character in the string to be removed. 
first 
Iterator of the member type string::iterator referring to the first character in a sequence of characters within the string to be erased. 
last 
Iterator of the member type string::iterator referring to the last character in the sequence of characters within the string to be erased. Return Value
For the member that returns a string&, the function returns *this.
For the remaining members, the function returns an iterator of member type string::iterator referring to the character that now occupies the position of the first character erased, or, if no such character exists, returns end().Example
// string::erase
#include <iostream>
#include <string>
using namespace std;int main ()
{string str ("This is an example phrase.");string::iterator it;// erase used in the same order as described above:str.erase (10,8);cout << str << endl;        // "This is an phrase."it=str.begin()+9;str.erase (it);cout << str << endl;        // "This is a phrase."str.erase (str.begin()+5, str.end()-7);cout << str << endl;        // "This phrase."return 0;
}Basic template member declaration
( basic_string<charT,traits,Allocator> )
typedef typename Allocator::size_type size_type;
basic_string& erase( size_type pos = 0, size_type n = npos);iterator erase ( iterator p );iterator erase ( iterator first, iterator last );See also
string::clear Clear string (public member function) 
string::replace Replace part of string (public member function) 
string::insert Insert into string (public member function) 
string::assign Assign content to string (public member function) 

---------------------------------------------------------------------------------------------------

因此,删除首字符可用的方法有:

1.  str.erase(0, 1);

2. str.erase(str.begin());

3. str.erase(str.begin(), str.begin()+1) ;              // 此法估计不会有人用了

4. 还能想到的应该是取子串方法了!



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

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

相关文章

Mybatis各种模糊查询及#和$区别

模糊查询&#xff1a; 工作中用到&#xff0c;写三种用法吧 sql中字符串拼接SELECT * FROM tableName WHERE name LIKE CONCAT(CONCAT(%, #{text}), %); 使用 ${...} 代替 #{...}SELECT * FROM tableName WHERE name LIKE %${text}%; 程序中拼接 Java // or String searchText …

Tomcat 配置支持APR

对ARP支持&#xff0c;需要安装以下库&#xff1a; APR libraryJNI wrappers for APR used by Tomcat (libtcnative)OpenSSL libraries其中JNI wrappers(libtcnative)安装依赖另外两项&#xff0c;以及Java headers.&#xff08;It depends on APR, OpenSSL, and the Java head…

[算法] 麻将序数牌组合方案

// 环境: centos7.2, g v4.8.5#include <iostream> #include <unistd.h> #include <stdio.h> #include <string.h> #include <vector> #include <map>using namespace std;enum CombineType {CombineType_Null 0, // 单牌CombineType_Dui…

swagger接口数据上传

后端接口参数格式&#xff1a; 1.正常大对象传参&#xff1a; 2.正常参数传参&#xff1a; 3.第三者传参&#xff1a;

java中单例模式的3种实现

1 饿汉式单例类.在类初始化时&#xff0c;已经自行实例化 class EagerSingleton { private static final EagerSingleton m_instance new EagerSingleton(); /** * 私有的默认构造子 */ private EagerSingleton() { } /** * * 静…

webstrom打开多个项目,webstrom常用快捷键

1.webstrom打开多个项目默认情况下一次只能打开一个项目&#xff0c;如果需要打开多个就按照下面的方法File -> settings -> Directories -> Add Content Root 中添加你需要的工程目录。2.加速 禁用多余的插件&#xff0c;关掉没必要的代码检查项。 webstorm慢的原因主…

[算法] vector删除元素

#include <iostream> #include <algorithm>using namespace std;bool IsOdd (int i) { return i % 2 1; } // 奇数void test_remove(vector<int>& v) {auto del remove(v.begin(), v.end(), 9); // 删除所有的9v.erase(del, v.end());//v.erase(del);…

XMLHttpRequest 跨域请求获取 Response Header

XMLHttpRequest 跨域请求获取 Response Header xhr.getAllResponseHeaders() // 获取所有的headerxhr.getResponseHeader("key") // 获取指定的header

ASP.NET MVC3数据绑定到VIEW的方式

ASP.NET MVC3数据绑定到VIEW的方式 1、 指定页面数据的强类型Module 数据类型是强类型&#xff0c;编译时报错&#xff0c;运行效率高 Action: public ActionResult Index() { var _instructors new List<Instructor>( new Instructor[] { new Instructor { Name &…

值得一做》关于并查集的进化题目 BZOJ1015(BZOJ第一页计划)(normal-)

这道题和以前做过的一道经典的洪水冲桥问题很像&#xff0c;主要做法是逆向思维。&#xff08;BZOJ第10道非SB题纪念&#xff09; 先给出题目 Description 很久以前&#xff0c;在一个遥远的星系&#xff0c;一个黑暗的帝国靠着它的超级武器统治者整个星系。某一天&#xff0c;…

git操作之pull拉取远程指定分支以及push推送到远程指定分支

一、pull操作 1、将远程指定分支 拉取到 本地指定分支上&#xff1a; &#xff08;注&#xff1a;命令里的尖括号<>只是包裹中文的标识&#xff0c;方便你看的&#xff0c;实际使用时不用写&#xff0c;不过冒号需要&#xff09; git pull origin <远程分支名>:…

[算法] 求排列组合: 从n个数中任选m个数组成一个新数

#include <iostream> #include <vector>using namespace std;// 求排列组合算法: C(n, m): 从n个数中任选m个数组成一个新的数, 求有多少种组合, 分别是什么 // 从v[]里任选m个元素组成一个组合, 与顺序无关 template<class T> vector<vector<T>&g…

Functional ProgrammingLazy Code:被我忘记的迭代器

本文给出一个Functional Programming和Lazy Code的一个例子。跟着思路走&#xff0c;关键的地方会有相应的说明。 我们想实现一个判断"素数"的小程序&#xff0c;如下&#xff1a; using System;namespace FunctionalProgramming {class Program{static void Main(st…

TP框架如何绑定参数。目的进行ajax验证

TP框架的自动绑定 对于某些操作的情况&#xff08;例如模型的写入和更新方法&#xff09;&#xff0c;可以支持参数的自动绑定&#xff0c;例如&#xff1a; 首先需要开启DB_BIND_PARAM配置参数&#xff1a; DB_BIND_PARAM > true 然后&#xff0c;我们在使用 1.$Model M(U…

使用js 计算两个日期之间的相差的天数

将两个日期都转换为毫秒&#xff0c;然后相减&#xff0c;再将减下来的毫秒数转换为天数&#xff0c;就可以得到两个日期之间相差的天数了。&#xff08;接受的日期格式为“20201-1”&#xff0c;“20201/1”等用连接符连接起来的日期字符串&#xff09; getDiffDay(date_1, da…

PhpStorm配置Xdebug调试PHP程序

From: http://blog.csdn.net/ljfrocky/article/details/46531137这篇文章主要介绍了如何使用PhpStorm Xdebug调试PHP程序&#xff0c;需要的朋友可以参考下。运行环境PhpStorm版本&#xff1a;8.0.3 PHP版本&#xff1a;5.4.12 xdebug版本&#xff1a;php_xdebug-2.2.3-5.4-vc…

对刚

3 /*直接链表模拟 */ #include<cstdio> #include<iostream> #define M 100010 using namespace std; int next[M],fa[M],vis[M],n,t; int main() {//freopen("jh.in","r",stdin);//freopen("resist.in","r",stdin);//freo…

java处理高并发高负载类网站问题

java处理高并发高负载类网站问题 一&#xff1a;高并发高负载类网站关注点之数据库 没错,首先是数据库,这是大多数应用所面临的首个SPOF。尤其是Web2.0的应用&#xff0c;数据库的响应是首先要解决的。 一般来说MySQL是最常用的&#xff0c;可能最初是一个mysql主机&#xff0c…

动态修改el-input样式;动态修改elmentUI元素样式;css变量

场景&#xff1a;正常我们动态修改div元素的样式&#xff0c;使用:style和:class即可&#xff1b;但是我们想要动态修改element的组件样式时候&#xff0c;例如el-input字体颜色&#xff0c;由于el-input的样式嵌套很深&#xff0c;我们需要修改的实际是.el-input__inner这个样…

Listener监听器与Filter过滤器

1.Listener [1]监听器简介> Listener是JavaWeb的三大组件之一&#xff0c;Servlet、Filter、Listener> Listener翻译过来就是监听器> 现实生活中的监听器&#xff1a;- 监听谁&#xff1a;明星- 监听器&#xff1a;朝阳群众- 监听事件&#xff1a;干坏事- 回调函数&am…