static S afterTab(S s) { if (s == null) ret ""; int i = s.indexOf('\t')+1; while (i < l(s) && s.charAt(i) == '\t') ++i; ret s.substring(i); }