我在文本文件名中有两个句子,例如:
Abbey n. (pl. -s) 1 building(s) occupied by a community of monks or nuns. 2 the community itself. 3 building that was once an abbey.
Abbot n. Head of a community of monks. [old english from latin abbas]
我可以匹配单词 Abbey 使用
QRegularExpression re("Abbey", QRegularExpression::CaseInsensitiveOption);
QRegularExpressionMatch match = re.match(txtFile);
提取含义 Abbey 的过程将是什么,含义将是“由僧侣或修女社区占据的建筑物”?