//ERDDAP/com.cohort.util/ScriptString2/fromNccsvString
fromNccsvString
[JVM]
open fun fromNccsvString(s: String): String
This converts an NCCSV string to a true 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 This won't throw an exception.
Return
the decoded string
Parameters
JVM
s | it may be enclosed by "'s, or not. |