static S dropAfterSubString_orNull(S s, S b) { int i = indexOf(s, b); if (i < 0) null; ret substring(s, 0, i); }