preg_replace 数据的正则表达式:图像(任何内容)”

发布于 2024-12-11 08:19:49 字数 239 浏览 0 评论 0原文

匹配以下序列的正则表达式是什么:

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 技术交流群。

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

发布评论

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

评论(2

简单气质女生网名 2024-12-18 08:19:49

首先匹配文字文本 data:image,然后匹配零个或多个非 " 的字符,然后匹配 "

数据:图像[^"]*"

First match the literal text data:image, then zero or more characters that aren't " then ".

data:image[^"]*"

您的好友蓝忘机已上羡 2024-12-18 08:19:49

如果您只想要数据:图像:

$string = preg_replace('/data:image[^"]*"$/', 'data:image"', $string);

如果您只想要其他部分:

$string = preg_replace('/data:image([^"]*)"$/', '\1', $string);

if you want just the data:image:

$string = preg_replace('/data:image[^"]*"$/', 'data:image"', $string);

If you want just the other part:

$string = preg_replace('/data:image([^"]*)"$/', '\1', $string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文