//ERDDAP/com.cohort.util/ScriptString2/fromJson
fromJson
[JVM]
open fun fromJson(s: String): String
This returns the unJSON version of a JSON string (surrounding "'s (if any) are removed and \, \f, \n, \r, \t, /, and " are unescaped). This is very liberal in what it accepts, including all common C escaped characters: http://msdn.microsoft.com/en-us/library/h21280bw%28v=vs.80%29.aspx "null" returns the String "null". null returns null. This won't throw an exception.
Return
the decoded string
Parameters
JVM
s | it may be enclosed by "'s, or not. |