如何匹配字符串中未出现在字母后面的每个数字?

发布于 2025-01-09 20:28:51 字数 314 浏览 1 评论 0原文

我正在尝试编写一个正则表达式,它匹配所有数字,直到第一次出现字母为止,或者换句话说,匹配前面没有字母的任何数字。

"1 & 2 Are numbers"             // Matches "1" and "2"
"3 Is a number smaller than 4"  // Matches "3"

我本以为类似下面的东西会起作用,但无济于事:

(?<![A-Z])\d

这将用于 Adob​​e InDesign,据我所知,它具有很好的正则表达式支持。

I'm trying to write a regex that matches all numbers until the first occurrence of a letter or, to put it another way, matches any numbers not preceded by a letter.

"1 & 2 Are numbers"             // Matches "1" and "2"
"3 Is a number smaller than 4"  // Matches "3"

I would have thought that something like the following would work, but to no avail:

(?<![A-Z])\d

This will be for use in Adobe InDesign, which has pretty good regex support, as far as I can tell.

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

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

发布评论

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

评论(1

梦断已成空 2025-01-16 20:28:51

下面的模式可以查找一行中第一个字母 [a-zA-Z] 之前的所有数字。
它在测试字符串中找到 1、2 和 3,但没有找到 4。

^((?![a-zA-Z])[\s\S])*[0-9]+

Here is a pattern which finds all numbers in a line up to the first letter [a-zA-Z].
It finds 1, 2 and 3 in your test strings, but not 4.

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