ProtoFlux:Is White Space: Difference between revisions

From Resonite Wiki
Created a page for the Is White Space node.
 
Link to C# docs
Line 12: Line 12:
|}}
|}}


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


== Inputs ==
== Inputs ==
Line 18: Line 18:
=== Character ([[Type:char|char]]) ===  
=== Character ([[Type:char|char]]) ===  


The character literal to check.
The character value to check.


== Outputs ==
== Outputs ==
Line 25: Line 25:


Returns if this is whitespace.
Returns if this is whitespace.
== See Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.iswhitespace?view=net-8.0 .NET's <code>Char.IsWhiteSpace</code>], which Resonite uses internally.


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

Revision as of 17:53, 17 April 2024

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 value to check.

Outputs

* (bool)

Returns if this is whitespace.

See Also