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

MyMemoWiki

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

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==文字列の中のURLにリンクをはる== String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)"; String replacement = "<a href='$1' target='_bla…」)
 
 
(同じ利用者による、間の1版が非表示)
1行目: 1行目:
==文字列の中のURLにリンクをはる==
+
==[[文字列の中のURLにリンクをはる]]==
  
 
  String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)";
 
  String regex = "((https?|ftp)://[0-9a-zA-Z,;:~&=@_'%?+\\-/$.!*()]+)";
  String replacement = "<a href='$1' target='_blank'>$1</a>";
+
  String replacement = "&lt;a href='$1' target='_blank'&gt;$1&lt;/a&gt;";
 
 
 
  return value.replaceAll(regex, replacement);
 
  return value.replaceAll(regex, replacement);

2020年2月16日 (日) 04:21時点における最新版

文字列の中のURLにリンクをはる

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