所以这是我的程序:
#include "stdafx.h"
#include <iostream>
#include <string>
#include <regex>
#include <windows.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string str = "<link rel=\"shortcut icon\" href=\"http://joyvy.com/img/favicon.png\" />";
regex expr("<link rel=+(\"|')+shortcut+(.*?(\"|'))+(.*?)href=(\"|')+(.*?)+(\"|')");
smatch matches;
cout << "start..." << endl;
regex_match(str, matches, expr);
cout << "this will not be printed";
}
这是我的程序的输出:
start...
std::regex_match() 函数调用只是冻结了我的程序。经过 2 或 3 分钟后,它会引发错误:
Unhandled exception at at 0x7515B760 in regex.exe: Microsoft C++ exception: std::regex_error at memory location 0x001D9088.
那么有什么问题呢?