如何将字符串前后的空白去除? (使用string.find_first_not_of, string.find_last_not_of) (C/C++)

1/**//* 

 2(C) OOMusou 2006 http://oomusou.cnblogs.com

 3

 4Filename    : StringTrim1.cpp

 5Compiler    : Visual C++ 8.0

 6Description : Demo how to trim string by find_first_not_of & find_last_not_of

 7Release     : 11/17/2006

 8*/

 9#include <iostream>

10#include <string>

11

12std::string& trim(std::string &);

13

14int main() {

15  std::string s = "   Hello World!!   ";

16  std::cout << s << " size:" << s.size() << std::endl;

17  std::cout << trim(s) << " size:" << trim(s).size() << std::endl;

18

19  return 0;

20}

21

22std::string& trim(std::string &s) {

23  if (s.empty()) {

24    return s;

25  }

26

27  s.erase(0,s.find_first_not_of(" "));

28  s.erase(s.find_last_not_of(" ") + 1);

29  return s;

30}

31

这在字符串处理是很常用的功能,.NET Framework的String class直接提供Trim()的method,其它语言也大都有提供(VB、VFP),但C++无论Standard Library或STL都找不到相对应方法,以下的方式是由希冀blog中的C++中如何去掉std::string对象的首尾空格 改编而来,加上了pass by reference适合function使用,其中std::string所提供的find_first_not_of()和find_last_not_of()真是大开眼界,竟然还有这种method,可以找寻第一个不符合条件的位置,我在其它语言都还没见过这样的function。

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值