static S dropUntilDash(S s) { if (s == null) ret ""; int i = s.indexOf('-'); ret trim(i >= 0 ? substring(s, i+1) : s); }