String orig="abc";
System.out.println (orig.matches ("abc")); // true
System.out.println (orig.matches ("^abc$")); // true
System.out.println (orig.matches ("^\a\b\c$")); // false
Why is the last match with escaped chars false? Is it not allowed to escape EVERY character?