Escape String
Strings
The Escape String node escapes strings by adding \
behind special characters. Its intention is for use in an environment with .NET Regular Expressions, but since Resonite does not currently implement any user-facing regex, its usefulness is limited.
String (string)
The string to escape.
* (string)
The escaped string with \
added behind the following characters: \
, *
, +
, ?
, |
, {
, [
, (
, )
, ^
, $
, .
, #
, and whitespace characters.
Examples
-
Escape String being used in some ProtoFlux code.