memo.xight.org

日々のメモ

正規表現 (Stringクラス)

前提

  置換対象文字列 : str

マッチング

boolean flag = str.matches("正規表現");


置換

String result = str.replaceFirst("正規表現","置換文字列");
String result = str.replaceAll("正規表現","置換文字列");


分割

String[] strs = str.split("正規表現");