我正在尝试使用具有诸如 结构的 php 解析链接[google](http://google.com)
,到目前为止我已经得到了这个:
"/\[(.+?)\]((.+?\))/is"
我无法工作的唯一部分是带括号')'的部分。
任何帮助都会很棒!
[编辑]
@jari - 这是代码的一部分:
$find = array(
"@\n@",
"/[**](.+?)[**]/is",
"/\[(.+?)\]\((.+?)\)/is"
);
$replace = array(
"<br />",
"<strong>$1</strong>",
"<a href\"$1\" target=\"_blank\" rel=\"no follow\"></a>"
);
$body = htmlspecialchars($body);
$body = preg_replace($find, $replace, $body);
return $body;