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