Javaの正規表現\zコンストラクト
部分式/メタ文字「\z」は文字列の末尾に一致します。
例1
import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample { public static void main( String args[] ) { String regex = "Tutorialspoint\\z"; String input = "Hi how are you welcome to Tutorialspoint"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; while(m.find()) { count++; } System.out.println("Number of matches: "+count); } }
出力
Number of matches: 1
例2
次のJavaプログラムは、指定された入力テキストが数字で終わっているかどうかを確認します。
import java.util.regex.Matcher; import java.util.regex.Pattern; public class Data { public static void main( String args[] ) { String regex = "[0-9]\\z"; String input = "Hi how are you \n this is sample text \n this is third line 554"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); if(m.find()) { System.out.println("Given input ends with a digit"); } else { System.out.println("Given input doesn’t end with a digit"); } } }
出力
Given input ends with a digit
-
Javaの正規表現re*メタ文字
部分式/メタ文字「re*」は、前の式の0回以上の出現に一致します。 例1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample { public static void main( String args[] ) { String regex = "aabc*"; String input = "aabcabcaabcabbcaab
-
正規表現 。 (ドット)Javaのメタ文字
部分式/メタ文字「。」改行以外の任意の1文字に一致します。 例1 import java.util.regex.Matcher; import java.util.regex.Pattern; public class MatchesAll { public static void main( String args[] ) { String regex = "."; String input = "Hi how are you welcome to Tu