static S multiSpacesToSingle(S s) { ret s == null ? null : s.replaceAll(" +", " "); }