編集の要約なし |
編集の要約なし |
||
5行目: | 5行目: | ||
String s1 = "Java and Python and C++."; | String s1 = "Java and Python and C++."; | ||
if (s1.matches("[Jj]ava.*")) { | if (s1.matches("^[Jj]ava.*")) { | ||
System.out.println("ture"); | System.out.println("ture"); | ||
} | } |