Created a page for the Is Upper node.  | 
				m YoshBot moved page ProtoFlux:Is Upper to ProtoFlux:IsUpper: Automated: removing spaces from ProtoFlux namespace  | 
				||
| (3 intermediate revisions by one other user not shown) | |||
| Line 12: | Line 12: | ||
|}}  | |}}  | ||
The   | The '''Is Upper''' node takes in a character literal and returns if that character is an upper case letter.  | ||
== Inputs ==  | == Inputs ==  | ||
=== Character ([[Type:char|char]]) ===    | === Character ([[Type:char|char]]) ===  | ||
The character literal to check.  | The character literal to check.  | ||
| Line 23: | Line 22: | ||
=== * ([[Type:bool|bool]]) ===  | === * ([[Type:bool|bool]]) ===  | ||
Returns <code>true</code> if <code>Character</code> is an upper case letter, <code>false</code> otherwise. Upper case characters recognized by this node are part of the unicode delegation [https://www.compart.com/en/unicode/category/Lu <code>Lu</code>].  | |||
== See Also ==  | |||
* [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 00:25, 21 August 2025
Is Upper
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.