ProtoFlux:Is Lower: Difference between revisions

From Resonite Wiki
Created a page for the Is Lower node.
 
m fixup
Line 16: Line 16:
== 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 a lower case letter, <code>false</code> otherwise. Lowercase letters recognized by this node are given [https://www.compart.com/en/unicode/category/Ll the delegation <code>Li</code> in Unicode].


Returns if this is a lower case letter.
== See Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.islower?view=net-8.0 Microsoft documentation for the <code>Char.IsLower</code> method].


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

Revision as of 20:27, 28 April 2024

Is Lower
Character
*
Characters

The Is Lower node takes in a character literal and returns if that character is a lower case letter.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns true if Character is a lower case letter, false otherwise. Lowercase letters recognized by this node are given the delegation Li in Unicode.

See Also