ProtoFlux:Is Letter: Difference between revisions

From Resonite Wiki
Created a page for the Is Letter node.
 
cleanup
Line 12: Line 12:
|}}
|}}


The <code>Is Letter</code> node takes in a character literal and returns if that character is a letter. Letter characters are letters that have a letter value to them and is not a symbol, number, or whitespace.
The <code>Is Letter</code> node takes in a character literal and returns if that character is a 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 if <code>Character</code> is a letter. Letters recognized by this node are part of the Unicode delegations [https://www.compart.com/en/unicode/category/Lu <code>Lu</code>], [https://www.compart.com/en/unicode/category/Ll <code>Ll</code>], [https://www.compart.com/en/unicode/category/Lt <code>Lt</code>], [https://www.compart.com/en/unicode/category/Lm <code>Lm</code>], or [https://www.compart.com/en/unicode/category/Lo <code>Lo</code>].


Returns if this is a letter.
== See Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.isletter?view=net-8.0 Microsoft's Documentaiton on <code>Char.IsLetter</code>]


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

Revision as of 20:04, 28 April 2024

Is Letter
Character
*
Characters

The Is Letter node takes in a character literal and returns if that character is a letter.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns if Character is a letter. Letters recognized by this node are part of the Unicode delegations Lu, Ll, Lt, Lm, or Lo.

See Also