我有一个
形式的字符串"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()
,但我不知道如何使用正则表达式。