在 PHP 中的字母数字字符串上使用 preg_split
考虑字符串 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
preg_split 不是您想要的函数,您想要
preg_match
因为您不想将字符串拆分为多个部分,而是检索其中的一部分。由于我不知道更多细节,我只能提供一个粗略的示例来说明如何做到这一点。
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.