PHP PCRE 表达式问题 - 获取字符串的数字
我需要一个正则表达式(PCRE)来匹配字符串内的整数,就像这样的字符串: image89.jpg
我尝试了很多选项但没有成功。
顺便说一句,我正在使用 preg_replace()
我的最后一次尝试:
preg_replace('(\d+)', '$1', 'image89.jpg');
I need a regex expression (PCRE) to match a integer number inside a string, being the string like : image89.jpg
I've tried many options without success.
I'm using preg_replace() by the way
My last attempt :
preg_replace('(\d+)', '$1', 'image89.jpg');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您打算在同一字符串中查找多组数字,则需要使用
preg_match_all
。If you plan to find multiple sets of digits in the same string, you'll want to use
preg_match_all
.