如何判断字符串中是否存在特殊字符?

如何判断字符串中是否存在特殊字符?

头文件<boost/algorithm/string.hpp>包含单个算法any_of的四个变体。 该算法测试序列中的元素,若字符串中的任意元素具有特定的属性,则函数返回true。
本例程中的any_of采用序列和谓词。 如果谓词对应于序列中的任意元素,则返回true。

#include "stdafx.h"
#include "iostream"
#include "windows.h"
#include <regex>
#include<boost/algorithm/string.hpp>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	bool flag;
	string tmpstr = "Hello CSDN";
	string::const_iterator iter = tmpstr.begin();
	string::const_iterator iterEnd = tmpstr.end();
	flag = any_of(iter, iterEnd, boost::is_any_of("[\\/:*?""<>|;!@#$%^&(){}[]_-+='',.~!@#¥%……&*()-=+——{}【】;‘’、:“”|、,。、《》?]"));
	if (flag)
	{
		cout << "字符串中含有特殊字符,解析错误" << endl;
	}
	else
	{
		cout << tmpstr << endl;
	}

	system("pause");
}

注:在执行过程中可能会出现的错误
1.错误列表:
error C4996: ‘std::_Copy_impl’: Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS
See documentation on how to use Visual C++ ‘Checked Iterators’在这里插入图片描述
解决方法
属性->c/c+±>预处理器->预处理器定义->编辑->添加“_SCL_SECURE_NO_WARNINGS”->确定->重新运行就可以解决了

2”#include<boost/algorithm/string.hpp>”头文件加载不进去与boost::is_any_of代码部分飘红

原因:程序中缺少Boost库。

源码链接:ParsingString.rar

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值