Convert a JSON-escaped string to a string.
Source position: fpjson.pp line 803
| function JSONStringToString( | 
| const S: TJSONStringType | 
| ):TJSONStringType; | 
| const S: UnicodeString | 
| S | 
 | JSON-escaped string to convert. | 
Pascal string with escaped characters replaced.
| S | 
 | JSON-escaped string to convert. | 
JSONStringToString examines the string S and replaces any special characters by an escaped string, as in the JSON specification. The following escaped characters are recognized:
\\ \" \/ \b \t \n \f \r \u000X
| 
 | Convert a string to a JSON-escaped string. | |
| 
 | Convert a JSON type to a string. |