static S dropAfterSpace(S s) { ret s == null ? null : substring(s, 0, smartIndexOf(s, ' ')); }