static S afterLastSlash(S s) {
  if (s == null) null;
  int i = s.lastIndexOf('/');
  ret i < 0 ? s : substring(s, i+1);
}