c++ 去除字符串中的空格和标点符号 (remove_if 函数的用法)
C++中提供了自动删除空格和标点符号的函数,使用如下:
#include <ctype.h>
#include <algorithm>
str_testing.erase(
remove_if ( str_testing.begin(), str_testing.end(), static_cast<int(*)(int)>(&ispunct) ),
str_testing.end());
str_testing.erase(
remove_if ( str_testing.begin(), str_testing.end(), static_cast<int(*)(int)>(&isspace) ),
str_testing.end());
注意需要包含如上两个头文件
本文系转载, 前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系 转载 , 前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
社区
活动
资源
关于
腾讯云开发者
扫码关注腾讯云开发者
领取腾讯云代金券
热门产品
热门推荐
更多推荐
Copyright © 2013 - 2024 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号: 粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2024 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有