preg_match_all 获取 2 个字符串之间的文本
我想得到两个字符串之间的字符串。
background:url(images/cont-bottom.png) no-repeat;
基本上我想获取 url(
和 )
之间的所有文本
希望有人可以帮助我。谢谢!
I would like to get string between 2 strings.
background:url(images/cont-bottom.png) no-repeat;
Basically I would like to get all text between url(
and )
Hope somebody can help me. thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
(.*?)
不会继续到新行搜索匹配项,但(.*)
将继续到新行输出:
(.*?)
will not continue to a new line to search matches, but(.*)
will continue to a new lineOutput:
试试这个正则表达式:
Try this regex:
在这种特殊情况下尝试这个
try this for this particular situation