static S newLinesToSpaces(S s) { ret s == null ? null : fixNewLines(s).replace("\n", " "); }