Convert a string to a JSON-escaped string.
Source position: fpjson.pp line 799
| function StringToJSONString( | 
| const S: TJSONStringType; | 
| Strict: Boolean = False | 
| ):TJSONStringType; | 
| const S: UnicodeString; | 
| Strict: Boolean = False | 
| S | 
 | String to convert to JSON string. | 
| Strict | 
 | If set to true the slash will also be escped. | 
properly escaped JSON string.
| S | 
 | String to convert to JSON string. | 
| Strict | 
 | If set to true the slash will also be escped. | 
StringToJSONString examines the string S and replaces any special characters by an escaped string, as in the JSON specification. The following characters are escaped:
\ " #8 #9 #10 #12 #13.
Strict indicates that only the absolutely necessary characters will be escaped (when set to True) when convering string values to JSON If set to False/ will also be escaped, although this is strictly speaking not necessary.
| 
 | Convert a JSON-escaped string to a string. | |
| 
 | Convert a JSON type to a string. |