String lastChars(int n) { if (n <= 0) return ""; if (n >= length) return this; return substring(length - n); }