私はURLをクリック可能にするこのパターンを持っています.今私のテキストにはと<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>');