0

我在 VC++ 中的一个函数中使用正则表达式。这是我的代码文件:

#include "stdafx.h"
#include<regex>
#include<iostream>
#include<string>
using namespace std;
void test_regex_search(const std::string& input)
{   
    std::cout << " Initial string = " << input <<endl;
    std::regex rgx("(^|\\W)\\d+([a-zA-Z]*)?[\\\-\\\\]?(\\d*)([a-zA-Z]*)?"); 
        std::smatch match;
    char start[200] = {0};
    std::string repalcewith("");
        if (std::regex_search(input.begin(), input.end(), match, rgx))
        {
        std::cout << "match[0] = " << match[0]<< '\n';
        std::cout << "match[1] = " << match[1] << '\n';     
    }
        else
        std::cout << "No match\n";  
    std::regex_replace(&start[0],input.begin(),input.end(),rgx,repalcewith);
    std::cout << "final string = "<<start << endl;
}
int _tmain(int argc, _TCHAR* argv[])
{       
    test_regex_search("HIGH STREET 4323HTY  KM3.5 WINES ");
    return 0;
}

执行后,输出如下: final string = HIGH STREET KM3 WINES

在这个词“KM3.5”的特殊情况下,为什么最后的字符串是“KM3”,而我的正则表达式不能识别“。”?是治疗“。”吗?作为空间或什么可能是这个原因的适当原因。在此先感谢沙尚克

4

1 回答 1

0

.匹配\W正则表达式的开头。您可能想使用\b代替(^|\W)

于 2013-08-21T18:57:04.570 回答