String Escape

Converts between literal escape sequences and their corresponding control characters within a string.

Unescape: \n (newline), \r (carriage return), \t (tab), \0 (null), and \\ (backslash) are converted into the actual special characters. Escape: the actual special characters are converted back into their escape sequence representations.

Interface

Inputs

ParameterDetailsPossible Types
String

The string that contains either literal escape sequences or control characters to be converted to the opposite representation.

Primary Input

String
Unescape

Convert the control characters back into their escape sequence representations.

Default: true

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

String