//ERDDAP/com.cohort.util/ScriptString2/replaceAll
replaceAll
[JVM]
open fun replaceAll(s: String, oldS: String, newS: String): String
Returns a string where all occurences of oldS have been replaced with newS. If oldS occurs inside newS, it won't be replaced recursively (obviously).
Return
a modified version of s, with newS in place of all the olds.