正则表达式:描述了一种字符串匹配的模式,可以用来检查一个字符串中是否含有某种子串、将匹配的子串替换或者从某个串中取出符合某个条件的子串等。
以输入英文短句(英文单词+空格)为例:
#include "stdafx.h"
#include "iostream"
#include
using namespace std;
bool CheckStrFormat(std::string strFormat, std::string strCheck);
bool CheckStrFormat(std::string strFormat, std::string strCheck)
{
std::regex base_regex(strFormat);//正则表达式
std::smatch base_match;//存放匹配的字段
return std::regex_match(strCheck, base_match, base_regex);
}
int _tmain(int argc, _TCHAR* argv[])
{
string tmpstr = "And take things in stride.";
if (!CheckStrFormat("^[A-Za-z\\s\\.]+$", tmpstr))
{
cout << "字符串中除了字母和空格外还含有其他特殊字符,解析错误" << endl;
return false;
}
cout << tmpstr << endl;
system("pause");
}
if (!CheckStrFormat("^[A-Za-z\\s\\.]+$", tmpstr))
中的"^[A-Za-z\\s\\.]+$"
可以根据自己的需求进行配置.
|