我有一个包含太多部分的文件,例如
[Section]
[Section.Ia32]
[Section.x64].... so more
所以,我需要定义一个宏,以便在解析文件时我们可以使用一个宏来获取该部分。目前我正在尝试,
#define APattern = "(^(\\s)*\\[Section(\\.\\w+)*\\])";
它编译成功......但它不工作。
例如
CString a = Section;
a.compareNoCase(APattern);
它不工作..
谢谢