将所有HTML链接替换为字符串中的类似Markdown的链接

时间:2018-02-05 16:25:50

标签: php html markdown

我有一个

形式的字符串
"Look at this <a href='http://wwwstackoverflow.com' class='link' id='15'>website</a> 
or at this <a href='http://www.google.com'>page</a>"

我想用PHP解析它们

"Look at this [website]{http://www.stackoverflow.com} 
or at this [page]{http://www.google.com}"

我该怎么做?

我虽然使用preg_replace(),但我不知道如何使用正则表达式。

0 个答案:

没有答案