ProtoFlux:Is Separator: Difference between revisions

From Resonite Wiki
m fixup
style, formatting, doc clarification
 
Line 12: Line 12:
|}}
|}}


The <code>Is Separator</code> node takes in a character literal and returns if that character is a separator character.
The '''Is Separator''' node takes in a character literal and returns if that character is a separator character.


== Inputs ==
== Inputs ==
Line 25: Line 25:


== See Also ==
== See Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.isseparator Microsoft Documentation about the <code>Char.IsSeparator</code> method].
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.isseparator#system-char-isseparator(system-char) Microsoft Documentation about the <code>Char.IsSeparator(Char)</code> method].


[[Category:ProtoFlux:Strings:Characters]]
[[Category:ProtoFlux:Strings:Characters]]

Latest revision as of 17:07, 4 June 2024

Is Separator
Character
*
Characters

The Is Separator node takes in a character literal and returns if that character is a separator character.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns true if Character is a separator, false otherwise. Separator characters recognized by this node are given the Unicode delegation Zl, Zp, or Zs.

See Also