- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我需要在 php 中用带有正则表达式的“a”标签包裹文本中的所有链接,除了那些已经包裹的链接
所以我有文本:
Some text with html here<br/>
<code>http://www.somelink.html</code><br/>
<code>http://www.somelink.com/view/?id=95</code><br/>
<code><a href="http://anotherlink.html">http://anotherlink.html</a></code><br/>
<code><a href="http://anotherlink.html">Title</a></code>
我需要得到的:
Some text with html here<br/>
<code><a href="http://www.somelink.html">http://www.somelink.html</a></code>
<code><a href="http://www.somelink.com/view/?id=2495">http://www.somelink.com/view/?id=95</a></code><br/>
<code><a href="http://anotherlink.html">http://anotherlink.html</a></code><br/>
<code><a href="http://anotherlink.html">Title</a></code>
我可以用这个表达式匹配链接:
(?:(?:https?|ftp):\/\/|www.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]
但它也匹配已经在“a”标签中的那些人
最佳答案
关于php - 用正则表达式包裹 <a> 标签中的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5195947/
我是一名优秀的程序员,十分优秀!