使用正则表达式捕获不确定数量的数字?

发布于 2024-10-04 11:39:43 字数 275 浏览 4 评论 0原文

我想在可能包含无限数量数字的字符串上使用正则表达式来捕获。我的直觉引导我执行 "/\.getnumbers (\d+)+\s*/" 但这只匹配 .getnumbers 命令后面的第一个数字。如何编写一个正则表达式语句,该语句将捕获命令后由简单空格分隔的一个或多个数字。例如:.getnumbers 5 4 3 2 1 将匹配 (5) (4) (3) (2) (1),尽管正则表达式没有专门编写匹配5个数字,它可以匹配任意数量的数字。

I want to get captures using regex on a string that could contain an indefinite amount of numbers. My intuition lead me to do "/\.getnumbers (\d+)+\s*/"but that only matched the first number following the .getnumbers command. How do I write a regex statement that will capture one or more numbers after the command separated by a simple space. For example: .getnumbers 5 4 3 2 1 would match (5) (4) (3) (2) (1), though the regex isn't specifically written to match 5 numbers, it could match any amount of numbers.

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

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

发布评论

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

评论(2

离线来电— 2024-10-11 11:39:43

如果没有后处理,您可能无法做到这一点,因为大多数正则表达式引擎不允许无限数量的组。幸运的是,后处理仅包括按空格分割。

/\.getnumbers (\d+(?: \d+)*)/

You probably can't do it without postprocessing, since most regex engines don't allow an indefinite number of groups. Fortunately the postprocessing consists only of splitting by spaces.

/\.getnumbers (\d+(?: \d+)*)/
我的奇迹 2024-10-11 11:39:43
/\.getnumbers (\d+(?:\s+\d+)*)/

请注意,您将获得作为单个捕获组的所有数字。例如:“5 4 3 2 1”

/\.getnumbers (\d+(?:\s+\d+)*)/

Note that you'll get all of the numbers as a single capture group. eg: "5 4 3 2 1"

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