QRegExp 只是不匹配!请告诉我我做错了什么

发布于 2024-12-13 10:16:47 字数 586 浏览 3 评论 0原文

我目前正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉睡月亮 2024-12-20 10:16:47

问题是 | 限制为搜索 MF\dS\d\dC\d\d。所以 item 的单个 m 将会匹配。

请尝试使用“[MF]\\dS\\d\\d\\.C\\d\\d”
(注意:也将 . 替换为 \\.,因为单个点可以匹配任何字符)

The problem is that the | restricts to searching either M or F\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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文