cleanup |
style, formatting, better link |
||
(One intermediate revision by the same user not shown) | |||
Line 12: | Line 12: | ||
|}} | |}} | ||
The | The '''Is Letter''' node takes in a character literal and returns if that character is a letter. | ||
== Inputs == | == Inputs == | ||
Line 22: | 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 <code>true</code> if <code>Character</code> is a letter, <code>false</code> otherwise. 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>]. | ||
== See Also == | == See Also == | ||
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.isletter | * [https://learn.microsoft.com/en-us/dotnet/api/system.char.isletter#system-char-isletter(system-char) Microsoft documentation for the <code>Char.IsLetter(Char)</code> method.] | ||
[[Category:ProtoFlux:Strings:Characters]] | [[Category:ProtoFlux:Strings:Characters]] |
Latest revision as of 20:32, 3 June 2024
Is Letter
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 true
if Character
is a letter, false
otherwise. Letters recognized by this node are part of the Unicode delegations Lu
, Ll
, Lt
, Lm
, or Lo
.