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

MyMemoWiki

「文字列の中のURLにリンクをはる」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==文字列の中の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);