文字列の中のURLにリンクをはる
ナビゲーションに移動
検索に移動
文字列の中のURLにリンクをはる
- String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)";
- String replacement = "<a href='$1' target='_blank'>$1</a>";
- return value.replaceAll(regex, replacement);
© 2006 矢木浩人