ProtoFlux:Escape String: Difference between revisions

From Resonite Wiki
Create Escape String ProtoFlux Page
 
Added a note to not get confused on what node to use with string escaping.
Line 13: Line 13:


Escape String escapes strings with '\' according to the Microsoft implementation [https://learn.microsoft.com/en-us/dotnet/api/system.text.regularexpressions.regex.escape?view=netframework-4.6 4.6 escape string]
Escape String escapes strings with '\' according to the Microsoft implementation [https://learn.microsoft.com/en-us/dotnet/api/system.text.regularexpressions.regex.escape?view=netframework-4.6 4.6 escape string]
{{Note|If you need [https://en.wikipedia.org/wiki/Percent-encoding percent encoding] for network communication outside of Resonite, use the [[ProtoFlux:Escape Uri Data String|escape url data string]] node instead.|suggestion}}


=== String ([[Type:String|String]]) ===
=== String ([[Type:String|String]]) ===

Revision as of 10:43, 22 May 2024

Escape String
String
*
Strings

Escape String escapes strings with '\' according to the Microsoft implementation 4.6 escape string

If you need percent encoding for network communication outside of Resonite, use the escape url data string node instead.

String (String)

The string to escape.

* (String)

The escaped string with '\' according to the Microsoft implementation 4.6 escape string.

Examples