我如何使用 php 的 preg_replace 与简单的字符串和通配符?

发布于 2024-11-29 04:27:46 字数 181 浏览 0 评论 0原文

如果我有字符串 [link="*"] 其中 * 是通配符,那么我如何使用 php 将字符串替换为 其中 * 与之前的值相同?

preg_replace 是执行此操作的最佳方法吗?

谢谢,任何帮助表示赞赏!

If i have the string [link="*"] where * is a wildcard how could i then use php to replace the string with <a href="*"> where * is the same value as before?

Is preg_replace the best way to do this?

Thanks, any help appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

败给现实 2024-12-06 04:27:46
preg_replace('~\[link="(.*?)"\]~', '<a href="$1">', $text);
preg_replace('~\[link="(.*?)"\]~', '<a href="$1">', $text);
谁把谁当真 2024-12-06 04:27:46
$link = '[link="http://www.google.com/"]';
$link = preg_replace('/\[link="(.*)"\]/', '<a href="$1">', $link);
$link = '[link="http://www.google.com/"]';
$link = preg_replace('/\[link="(.*)"\]/', '<a href="$1">', $link);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文