QRegExp 只是不匹配!请告诉我我做错了什么
我目前正在 Mac 上开发 Qt C++ 应用程序。 在整个应用程序中,我经常使用字符串模式匹配。 当使用 QRegExp 类时,我总是遇到一些我不明白的问题!
我的 QRegExp 看起来像这样:
QRegExp regEx("M|F\\dS\\d\\d.C\\d\\d", Qt::CaseInsensitive);
它应该匹配文件名中的“M1S02.C12”或“F4S14.C01”等模式。 只要应匹配的输入文件名不包含此模式的部分,此功能就非常有效。
例如 : 我的输入文件名为“testItem_abcd_M1S03.C02_grade3”
regEx.exactMatch("testItem_abcd_M1S03.C02_grade3");
返回 false,而
regEx.indexIn("testItem_abcd_M1S03.C02_grade3");
返回 7,这是“item”中“m”的位置。
有人可以告诉我,我需要做什么才能使它匹配正确吗?
提前致谢, 吉他流
I am currently working on a Qt C++ application on Mac.
Throughout the application I am using string pattern matching pretty frequently.
When using the QRegExp class, I keep having trouble with something that I just don't understand!!!
My QRegExp looks like this :
QRegExp regEx("M|F\\dS\\d\\d.C\\d\\d", Qt::CaseInsensitive);
It is supposed to match patterns like "M1S02.C12" or "F4S14.C01" in filenames.
This works great as soon as the input filenames, which should be matched don't contain parts of this pattern.
For example :
my input file is named "testItem_abcd_M1S03.C02_grade3"
regEx.exactMatch("testItem_abcd_M1S03.C02_grade3");
returns false, whereas
regEx.indexIn("testItem_abcd_M1S03.C02_grade3");
returns 7, which is the position of "m" in "item".
Can someone please tell me, what I would need to do to make it match right?
Thanks in advance,
guitarflow
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是
|
限制为搜索M
或F\dS\d\dC\d\d
。所以 item 的单个 m 将会匹配。请尝试使用
“[MF]\\dS\\d\\d\\.C\\d\\d”
。(注意:也将
.
替换为\\.
,因为单个点可以匹配任何字符)The problem is that the
|
restricts to searching eitherM
orF\dS\d\d.C\d\d
. So the sinle m of item will match.Try
"[MF]\\dS\\d\\d\\.C\\d\\d"
instead.(Note: Also replaced
.
with\\.
, as a single dot matches any character)