正则表达式太贪婪了

发布于 2024-11-27 07:27:49 字数 488 浏览 0 评论 0原文

我需要验证一个范围。 输入采用以下格式:

string example1 = "anydate between 20100101 ~~ 20100101";
string example2 = "anydate between 20100101 and 20100101";
string example3 = "docid between 1 ~~ 2";

我使用以下正则表达式:

\b(\w)*(?<operator>Between|contains)\b(?<prefix>.*).*?(?<OP>~~|and)[  ]?\b(?.*)\b

当用户输入“20100101 ~~ 20100101和test1之间的任何日期”时,它失败并捕获直到test1

如何让我的正则表达式不那么贪婪并且只捕获20100101

I have requirement to validate a range.
The input is in the following format:

string example1 = "anydate between 20100101 ~~ 20100101";
string example2 = "anydate between 20100101 and 20100101";
string example3 = "docid between 1 ~~ 2";

I'm using the following regex:

\b(\w)*(?<operator>Between|contains)\b(?<prefix>.*).*?(?<OP>~~|and)[  ]?\b(?.*)\b

When user inputs "anydate between 20100101 ~~ 20100101 and test1" it is failing and it captures till test1.

How to make my regex less greedy and only caputure till 20100101?

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

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

发布评论

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

评论(1

鼻尖触碰 2024-12-04 07:27:49

您可以尝试

anydate\b(?<op>(between|contains))\b(?<first>[0-9]*)\b(?<op2>(~~|and))\b(?<second>[0-9]*)

编辑猜测需要什么,但是:

(?<func>\w+)\b(?<op>(between|contains))\b(?<first>\w+)\b(?<op2>(~~|and))\b(?<second>\w+)

You could try

anydate\b(?<op>(between|contains))\b(?<first>[0-9]*)\b(?<op2>(~~|and))\b(?<second>[0-9]*)

edit Guessing at whats needed but:

(?<func>\w+)\b(?<op>(between|contains))\b(?<first>\w+)\b(?<op2>(~~|and))\b(?<second>\w+)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文