「文字列の中のURLにリンクをはる」の版間の差分
ナビゲーションに移動
検索に移動
(ページの作成:「==文字列の中のURLにリンクをはる== String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)"; String replacement = "<a href='$1' target='_bla…」) |
(相違点なし)
|
2020年2月15日 (土) 07:29時点における版
文字列の中のURLにリンクをはる
String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)"; String replacement = "<a href='$1' target='_blank'>$1</a>";
return value.replaceAll(regex, replacement);
© 2006 矢木浩人