Get first n characters
String takeFirst(int n) { if (n >= length) return this; return substring(0, n); }