Returns last n characters of a string
String lastChars(String s, int len) { return s.substring(s.length - len); }