以下正则表达式:
$common_tlds = 'us|me|com|net|org|ly|be|edu|gov|uk|ca|de|jp|fr|au|ru|ch|it|nl|se|no|es|mil|co';
$regex = '#(?:https?://)?([^.\s]+(?:[^\s.]|[^\s][^\s.])*\.(?:' . $common_tlds . ')[^.\s]*)#i';
在这里使用:
preg_replace($regex,'<a href="http://$1" target="_blank">$1</a>', $text);
给我一个PREG_BACKTRACK_LIMIT_ERROR
很短的文字。一个示例文本是:
Life cant always give you the best shoes,handbags,clothes but it can give you the best creations.
我知道,有更好的链接在线查找正则表达式,但我很好奇我的正则表达式中的什么导致大量回溯以及如何改进它。谢谢!