有些人可以告诉我下面的代码有什么问题,我试图使用以下程序解析CSV文件,但它在m_uNumGroups
字段中返回零。
int _tmain(int argc, _TCHAR* argv[])
{
CAtlRegExp<> reUrl;
// Five match groups: scheme, authority, path, query, fragment
REParseError status = reUrl.Parse(**L"[^\",]+|(?:[ˆ\"])|\"\")"**);
if (REPARSE_ERROR_OK != status)
{
// Unexpected error.
return 0;
}
TCHAR testing[ ] = L"It’ s \" 10 Grand\" , baby";
CAtlREMatchContext<> mcUrl;
if (!reUrl.Match(testing,&mcUrl))
{
// Unexpected error.
return 0;
}
for (UINT nGroupIndex = 0; nGroupIndex < mcUrl.m_uNumGroups;nGroupIndex)
{
const CAtlREMatchContext<>::RECHAR* szStart = 0;
const CAtlREMatchContext<>::RECHAR* szEnd = 0;
mcUrl.GetMatch(nGroupIndex, &szStart, &szEnd);
ptrdiff_t nLength = szEnd - szStart;
printf_s("%d: \"%.*s\"\n", nGroupIndex, nLength, szStart);
}
return 0;;
}
答案 0 :(得分:0)
我不知道C ++,但是如果你试图将"It’ s \" 10 Grand\" , baby"
解析为It’ s \" 10 Grand\"
和baby
,那么这会因以下几个原因而失败:
"\"It’ s \"\" 10 Grand\"\"\", baby"
。csv regex
的StackOverflow并找出您应该使用CSV解析器。答案 1 :(得分:0)
使用ATL正则表达式语法,您需要在要捕获的表达式周围使用大括号。你的表达式没有,所以你只是在没有sbu表达式的情况下进行匹配。
检查出来:http://msdn.microsoft.com/en-us/library/k3zs4axe%28v=vs.80%29.aspx
{} 表示匹配组。可以通过CAtlREMatchContext对象检索输入中与大括号内表达式匹配的实际文本。