preg_replace 数据的正则表达式:图像(任何内容)”
匹配以下序列的正则表达式是什么:
data:image(any number of characters except of doublequotes)"
所以匹配以“data:image”开头(它可以位于字符串的任何部分,开头,中间),然后后面跟着 0 个或多个除“ 之外的任何字符”,即 。
我想在 preg_replace 中使用它,这样我就可以“删除”这一系列不需要的字符
what is the regex that matches the following sequence:
data:image(any number of characters except of doublequotes)"
So the match starts with "data:image" (it can be in any part of the string, beginning, middle) then it is followed by 0 or more anything characters except of " which is the end of the match.
I want to use it in preg_replace so i can "strip" this unwanted series of characters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先匹配文字文本
data:image
,然后匹配零个或多个非"
的字符,然后匹配"
。数据:图像[^"]*"
First match the literal text
data:image
, then zero or more characters that aren't"
then"
.data:image[^"]*"
如果您只想要数据:图像:
如果您只想要其他部分:
if you want just the data:image:
If you want just the other part: