正则表达式匹配可选字符串的问题(powershell)

发布于 2024-12-02 11:41:08 字数 348 浏览 0 评论 0原文

假设我有以下项目(行号仅供参考):

1: ER (1000) Attachments
2: ER (1000) Attachments (1)
3: ER (125) Attachments
4: ER (1) Attachments

我需要匹配以上所有项目。这是我正在使用的正则表达式:

ER \([0-9]*\) Attachments

这将返回数字 1,3 和 4。它与 #2 不匹配。

ER \([0-9]*\) Attachments.+

也不起作用。

有什么想法吗?

Say I have the following items (line numbers for reference only):

1: ER (1000) Attachments
2: ER (1000) Attachments (1)
3: ER (125) Attachments
4: ER (1) Attachments

I need to match all of the above. Here's the regex I'm using:

ER \([0-9]*\) Attachments

This returns numbers 1,3, and 4. It does not match #2.

ER \([0-9]*\) Attachments.+

does not work either.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

唯憾梦倾城 2024-12-09 11:41:08

你可以试试

ER \([0-9]*\) Attachments.*$

这对我有用。

编辑

这也适用于我:

^.*?\(\d+\).*$

You could try

ER \([0-9]*\) Attachments.*$

This works for me.

EDIT

This also works for me:

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