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