在 PHP 中的字母数字字符串上使用 preg_split

发布于 2024-08-16 21:02:34 字数 117 浏览 4 评论 0原文

考虑字符串 12345aaa。我想对其使用 preg_split() ,以便仅返回它的数字部分(即 12345)。我该如何编写它的正则表达式?

Consider the string 12345aaa. I want to use preg_split() on it so only the numeric part of it will be returned (i.e. 12345). How would I write the regex for it ?

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

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

发布评论

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

评论(1

难得心□动 2024-08-23 21:02:34

preg_split 不是您想要的函数,您想要 preg_match因为您不想将字符串拆分为多个部分,而是检索其中的一部分。由于我不知道更多细节,我只能提供一个粗略的示例来说明如何做到这一点。

$reg = null;
//match the first set of 1 or more numbers
if ( preg_match('/\d+/', $str, $reg) ){
    $num = $reg[0];
}

preg_split is not the function you want, you want preg_match as you don't want to split a string into parts, but to retrieve part of it. As I don't know more details, I can only provide a rough example of how to do it.

$reg = null;
//match the first set of 1 or more numbers
if ( preg_match('/\d+/', $str, $reg) ){
    $num = $reg[0];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文