我正在为我的应用程序编写加载过程,它涉及从文件中读取数据并创建具有适当属性的适当对象。
该文件由以下格式的连续条目(由换行符分隔)组成:
=== OBJECT TYPE ===
<Property 1>: Value1
<Property 2>: Value2
=== END OBJECT TYPE ===
其中值通常是可能由任意字符、换行符等组成的字符串。
我想创建一个std::regex
可以匹配这种格式并允许我使用的std::regex_iterator
依次将每个对象读入文件的方法。
但是,我无法创建与这种格式匹配的正则表达式;我查看了 ECMAScript 语法并按以下方式创建了我的正则表达式,但它与我的测试应用程序中的字符串不匹配:
const std::regex regexTest( "=== ([^=]+) ===\\n([.\\n]*)\\n=== END \\1 ===" );
在以下测试应用程序中使用它时,它无法将正则表达式与字符串匹配:
int main()
{
std::string testString = "=== TEST ===\n<Random Example>:This is a =test=\n<Another Example>:Another Test||\n=== END TEST ===";
std::cout << testString << std::endl;
const std::regex regexTest( "=== ([^=]+) ===\\n([.\\n]*)\\n=== END \\1 ===" );
std::smatch regexMatch;
if( std::regex_match( testString, regexMatch, regexTest ) )
{
std::cout << "Prefix: \"" << regexMatch[1] << "\"" << std::endl;
std::cout << "Main Body: \"" << regexMatch[2] << "\"" << std::endl;
}
return 0;
}