Unescape a string literal, removes the starting and
ending "/'-characters handles escape sequences and replaces all
""/''-string with a single "/'-character.
Namespace: Spotfire.Dxp.Data.ExpressionsEscape Sequences: \uHHHH - Any Unicode character expressed as four hexadecimal digits. \ooo - A character in the range 0-255 expressed as three octal digits 0-7. \b - \u0008: backspace (BS) \t - \u0009: horizontal tab (HT) \n - \u000a: line feed (LF) \f - \u000c: form feed (FF) \r - \u000d: carriage return (CR) \\ - \u005c: backslash \
Assembly: Spotfire.Dxp.Data (in Spotfire.Dxp.Data.dll) Version: 14.10.7525.5058 (14.10.7525.5058)
Syntax
Parameters
- literal
- Type: System String
The escaped string literal.
Return Value
Type: StringThe unescaped string literal.
Exceptions
Exception | Condition |
---|---|
System ArgumentException | Thrown if the literal does not start and end with either ' or " characters. |
Examples
Version Information
See Also