static S charRange(char first, char last) { new StringBuilder buf; while (first <= last) buf.append(first++); ret str(buf); }