String texte = "Quand le ciel bas et lourd" ; // texte à tester Pattern p = Pattern.compile("a.*") ; Matcher m = p.matcher(texte) ; boolean b = m.matches() ...
確定! 回上一頁