ProtoFlux:Is Control: Difference between revisions

From Resonite Wiki
m the silly
clarify doc
 
(2 intermediate revisions by the same user not shown)
Line 12: Line 12:
|}}
|}}


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


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


== See Also ==
== See Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.iscontrol?view=net-8.0 Microsoft Documentation of the <code>Char.IsControl</code> function].
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.iscontrol?view=net-8.0 Microsoft Documentation for the <code>Char.IsControl(Char)</code> function].


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

Latest revision as of 17:01, 4 June 2024

Is Control
Character
*
Characters

The Is Control node takes in a character literal and returns if that character is a control character.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Outputs true if Character is a control character, false otherwise. Control characters recognized by this node are part of the C0 and C1 sets of Unicode.

See Also