如何使用正则表达式从字符串中获取整数部分

发布于 2024-10-26 10:55:29 字数 104 浏览 0 评论 0原文

string $str  = "hello768gonf123";

如何使用正则表达式获取末尾的数字(即 123)?

string $str  = "hello768gonf123";

How do I get the numbers at the end (i.e. 123) using regex?

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

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

发布评论

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

评论(2

鲸落 2024-11-02 10:55:29

如果整数总是出现在字符串的末尾(hello768gonf123),您可以使用:

(\d+)$

如果您想捕获更接近末尾的整数(123 from hello768gonf123foo)你可以使用:

(\d+)\D*$

If the integer is always found at the end of the string(hello768gonf123), you can use:

(\d+)$

If you want to capture the integer closer to the end (123 from hello768gonf123foo) you can use:

(\d+)\D*$
溺渁∝ 2024-11-02 10:55:29

正则表达式“.*([0-9]+)”匹配后面跟着一系列一个或多个数字的任何内容,并将这些数字作为(唯一的)捕获组返回。

The regexp ".*([0-9]+)" matches anything followed by a series of one or more digits, and returns the digits as the (only) capture group.

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