我爱占星网 我爱占星网
首页
编程
java
php
前端
首页 编程 java php 前端

c++中 string 字符串删去空字符

string 字符串中的空白字符用什么方法删去?????????????????????????????????

http://www.cnblogs.com/Shirlies/p/4666744.html

void trim(string &s)
2 {
3 /*
4 if( !s.empty() )
5 {
6 s.erase(0,s.find_first_not_of(" "));
7 s.erase(s.find_last_not_of(" ") + 1);
8 }
9 */
10 int index = 0;
11 if( !s.empty())
12 {
13 while( (index = s.find(' ',index)) != string::npos)
14 {
15 s.erase(index,1);
16 }
17 }
18
19 }

近期文章

  • How Many People Can Survive
  • Inverse
  • Gem Squares
  • android在触摸事件ontouch()中 怎么确定触摸的控件的id
  • ngnix 代理tomcat 出现502 怎么解决啊
  • Android软键盘和CoordinatorLayout的问题
  • ssh整合出现错误【求大神帮忙】
  • android 触摸事件中 触摸控件 怎么获取id
  • java这个代码的执行顺序 求大神解答一下感谢
  • Pollution
  • 求问大神来解释一个很简单的问题
  • vs(2013或者2015) opencv报错计算机类型冲突或者错误代码0xc0000007d
  • WPF中tabitem样式的问题
  • Echarts 地图问题(Map .... not exists)
  • 采用“在共享 DLL 中使用 MFC”是不是这里所有dll都要提取出来
  • for x in range(0) x值为多少
  • springmvc hibernate 日志无法打印
  • lumen 访问一直404 ,为什么?求救啊~~~
  • Apache无法解析phpinfo等函数
  • iOS里面 ViewController对象里面为什么可以调用tabBarItem这个属性???

Copyright ©2022 我爱占星 All Rights Reserved.

浙ICP备2022030071号-1

部分图文来自网络,如有侵犯您的版权,请告诉我们删除

友情链接:代码精华