static S dropFrom(S s, S x) { if (s == null) null; int i = s.indexOf(x); if (i < 0) ret s; ret substring(s, 0, i); }