解析方括号占位符并获取特定属性的值

发布于 2024-12-01 05:23:13 字数 303 浏览 2 评论 0原文

像这样的一些链接:

[links url='http://www.google.com.hk' title='Google' image='']google[/links]
[links url='http://hk.yahoo.com' title='yahoo' image='']yahoo[/links]

如何使用 PHP 正则表达式获取 url 属性?

http://www.google.com.hk
http://hk.yahoo.com

Some links like these:

[links url='http://www.google.com.hk' title='Google' image='']google[/links]
[links url='http://hk.yahoo.com' title='yahoo' image='']yahoo[/links]

How to use PHP Regular expression get the url attributes?

http://www.google.com.hk
http://hk.yahoo.com

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

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

发布评论

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

评论(2

骑趴 2024-12-08 05:23:13

这应该可以帮助您开始:

preg_match_all("/\[links[^\]]+url='([^']+)'/", '{{your data}}', $arr, PREG_PATTERN_ORDER);

正则表达式的解释:

/
\[                  //An excaped "[" to make it literal.
links               //The work "links"   
[^\]]+              //1+ non-closing brackent chars ([^] is a negative character class)
url='               //The work url='
([^']+)             //The contents inside the '' in a caputuring group
/               

This should get you started:

preg_match_all("/\[links[^\]]+url='([^']+)'/", '{{your data}}', $arr, PREG_PATTERN_ORDER);

Explanation of the regex:

/
\[                  //An excaped "[" to make it literal.
links               //The work "links"   
[^\]]+              //1+ non-closing brackent chars ([^] is a negative character class)
url='               //The work url='
([^']+)             //The contents inside the '' in a caputuring group
/               
短叹 2024-12-08 05:23:13

使用此正则表达式:/\[links\s+(?:[^\]]*\s+)*url=\'([^\']*)\'[^\]]*?\]/

$str = "[links url='http://www.google.com.hk' title='Google' image='']google[/links]";
$m = array();
preg_match('/\[links\s+(?:[^\]]*\s+)*url=\'([^\']*)\'[^\]]*?\]/', $str, $m);
echo $m[1];

Use this regex: /\[links\s+(?:[^\]]*\s+)*url=\'([^\']*)\'[^\]]*?\]/

$str = "[links url='http://www.google.com.hk' title='Google' image='']google[/links]";
$m = array();
preg_match('/\[links\s+(?:[^\]]*\s+)*url=\'([^\']*)\'[^\]]*?\]/', $str, $m);
echo $m[1];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文