//ERDDAP/com.cohort.util/ScriptString2/fromNccsvChar
fromNccsvChar
[JVM]
open fun fromNccsvChar(s: String): Char
This converts an NCCSV encoded char to a true char (surrounding "'s and ''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
Return
the decoded char (or '?' if trouble) as a 1-char string.
Parameters
JVM
s | it may be enclosed by "'s and ''s, or not. |