ProtoFlux:Is Upper: Difference between revisions

From Resonite Wiki
m fixup
m doc clarification
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
|}}
|}}


The <code>Is Upper</code> node takes in a character literal and returns if that character is an upper case letter.
The '''Is Upper''' node takes in a character literal and returns if that character is an upper case letter.


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


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


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

Latest revision as of 17:11, 4 June 2024

Is Upper
Character
*
Characters

The Is Upper node takes in a character literal and returns if that character is an upper case letter.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns true if Character is an upper case letter, false otherwise. Upper case characters recognized by this node are part of the unicode delegation Lu.

See Also