class Program { public static void main(String args[]) { String str = "abc"; boolean a = str.matches("abc"); System.out.println(a); } }