ProtoFlux:IsWhiteSpace: Difference between revisions

From Resonite Wiki
m style
m YoshBot moved page ProtoFlux:Is White Space to ProtoFlux:IsWhiteSpace: Automated: removing spaces from ProtoFlux namespace
 
(One intermediate revision by one other user not shown)
Line 17: Line 17:


=== Character ([[Type:char|char]]) ===
=== Character ([[Type:char|char]]) ===
The character value to check.
The character literal to check.


== Outputs ==
== Outputs ==
Line 26: Line 26:
== See Also ==
== See Also ==


* [https://learn.microsoft.com/en-us/dotnet/api/system.char.iswhitespace Microsoft documentation for the <code>Char.IsWhiteSpace</code> method].
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.iswhitespace#system-char-iswhitespace(system-char) Microsoft documentation for the <code>Char.IsWhiteSpace(Char)</code> method].


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

Latest revision as of 00:26, 21 August 2025

Is White Space
Character
*
Characters

The Is White Space node takes in a character and returns if that character is whitespace. Whitespace characters are empty spaces in text that separate other characters.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns true if Character is whitespace, false otherwise. Whitespace characters recognized by this node have the Unicode property White_Space=yes.

See Also