このコード スニペットは、本 Mastering Regular Expressions からのものです。否定的な後読み (コメント # Not allowed to end with [.,?!]
) で最後の部分を理解するのに苦労しています。その式はどのようにor[?!,.]
から削除されますhttp://www.google.com/foo!
かhttp://www.google.com/bar\!
?
# Turn HTTP URLs into links . . .
$text =~ s{
\b
# Capture the URL to $1 . . .
(
http:// [-a-z0-9]+(\.[-a-z0-9]+)*\.(com|edu|info) \b # hostname
(
/ [-a-z0-9_:\@&?=+,.!/~*'%\$]* # Optional path
(?<![.,?!]) # Path not allowed to end with [.,?!]
)?
)
}{<a href="$1">$1</a>}gix;
print $text; # Finally, display the HTML-ized text.