我有这种模式可以使 url 可点击,现在在我的文本中有<br />
and <BR />
,如果链接后跟 br,则模式包括<br />
和<BR />
在链接中,我怎样才能在这种模式中排除它们:
replacePattern1 = /(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gim;
这是使用该模式的代码:
replacedText = inputText.replace(replacePattern1, '<a href="$1" target="_blank">$1</a>');