Created a page for the Is Letter Or Digit node. |
cleanup |
||
Line 12: | Line 12: | ||
|}} | |}} | ||
The <code>Is Letter Or Digit</code> node takes in a character literal and returns if that character is a letter or a digit. | The <code>Is Letter Or Digit</code> node takes in a character literal and returns if that character is a letter or a digit. It is a shorthand of <code>OR</code>ing the results of the [[ProtoFlux:Is Letter|Is Letter]] and [[ProtoFlux:Is Digit|Is Digit]] nodes. | ||
== Inputs == | == Inputs == | ||
Line 30: | Line 24: | ||
=== * ([[Type:bool|bool]]) === | === * ([[Type:bool|bool]]) === | ||
Returns if | Returns <code>true</code> if <code>Character</code> is a letter or digit, <code>false</code> otherwise. | ||
== See Also == | == See Also == | ||
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.isletterordigit?view=net-7.0 Microsoft Documentation about the <code>Char.IsLetterOrDigit</code> method]. | |||
[[Category:ProtoFlux:Strings:Characters]] | [[Category:ProtoFlux:Strings:Characters]] |
Revision as of 20:15, 28 April 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 OR
ing 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.