static S dropPrefix(S prefix, S s) { ret s == null ? null : s.startsWith(prefix) ? s.substring(l(prefix)) : s; }