cleanup |
style, formatting, microsoft link fix |
||
Line 12: | Line 12: | ||
|}} | |}} | ||
The | The '''Is Letter Or Digit''' node takes in a character literal and returns if that character is a letter or a digit. It is a shorthand of doing an [[ProtoFlux:OR|OR Operation]] on the results of the [[ProtoFlux:Is Letter|Is Letter]] and [[ProtoFlux:Is Digit|Is Digit]] nodes. | ||
== Inputs == | == Inputs == | ||
=== Character ([[Type:char|char]]) === | === Character ([[Type:char|char]]) === | ||
The character literal to check. | The character literal to check. | ||
Line 27: | Line 27: | ||
== See Also == | == See Also == | ||
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.isletterordigit | * [https://learn.microsoft.com/en-us/dotnet/api/system.char.isletterordigit#system-char-isletterordigit(system-char) Microsoft Documentation on the <code>Char.IsLetterOrDigit(Char)</code> method]. | ||
[[Category:ProtoFlux:Strings:Characters]] | [[Category:ProtoFlux:Strings:Characters]] |
Revision as of 20:37, 3 June 2024
Is Letter Or Digit
Characters
The Is Letter Or Digit node takes in a character literal and returns if that character is a letter or a digit. It is a shorthand of doing an OR Operation on the results of the Is Letter and Is Digit nodes.
Inputs
Character (char)
The character literal to check.
Outputs
* (bool)
Returns true
if Character
is a letter or digit, false
otherwise.