| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
ページの作成:「==文字列の中のURLにリンクをはる== String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)"; String replacement = "<a href='$1' target='_bla…」
==文字列の中のURLにリンクをはる==

String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)";
String replacement = "<a href='$1' target='_blank'>$1</a>";

return value.replaceAll(regex, replacement);

案内メニュー