1

我创建了一个正则表达式,它读取一个字符串并将找到的 url 转换为 HTML 链接。我想排除行尾的点(包含文本链接),但它也排除了文本链接内的点(如http://www.website.com/page.html。)这里的结束点应该排除但不是.html。这是我的正则表达式:

    $text = preg_replace("#(^|[\n  \"\'\(<;:,\*])((www|ftp)\.+[a-zA-Z0-9\-_]+\.[^ \"\'\t\n\r< \[\]\),>;:.\*]*)#", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $text);                        

如何做到这一点?

谢谢!汤姆

4

1 回答 1

4

将您的正则表达式更改为此

\b((?#protocol)https?|ftp)://((?#domain)[-A-Z0-9.]+)((?#file)/[-A-Z0-9+&@#/%=~_|!:,.;]*)?((?#parameters)\?[A-Z0-9+&@#/%=~_|!:,.;]*)?

或这个

\b((?:https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|$!:,.;]*[A-Z0-9+&@#/%=~_|$]*)\b

解释

"
\b                            # Assert position at a word boundary
(                             # Match the regular expression below and capture its match into backreference number 1
                                 # Match either the regular expression below (attempting the next alternative only if this one fails)
      http                          # Match the characters “http” literally
      s                             # Match the character “s” literally
         ?                             # Between zero and one times, as many times as possible, giving back as needed (greedy)
   |                             # Or match regular expression number 2 below (attempting the next alternative only if this one fails)
      ftp                           # Match the characters “ftp” literally
   |                             # Or match regular expression number 3 below (the entire group fails if this one fails to match)
      file                          # Match the characters “file” literally
)
://                           # Match the characters “://” literally
[-A-Z0-9+&@#/%?=~_|\$!:,.;]    # Match a single character present in the list below
                                 # The character “-”
                                 # A character in the range between “A” and “Z”
                                 # A character in the range between “0” and “9”
                                 # One of the characters “+&@#/%?=~_|\$!:,.;”
   *                             # Between zero and unlimited times, as many times as possible, giving back as needed (greedy)
[A-Z0-9+&@#/%=~_|\$]           # Match a single character present in the list below
                                 # A character in the range between “A” and “Z”
                                 # A character in the range between “0” and “9”
                                 # One of the characters “+&@#/%=~_|\$”
"

希望这可以帮助。

于 2012-05-29T08:20:38.417 回答