Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

ProtoFlux:IsNumber: Difference between revisions

From Resonite Wiki
Yosh (talk | contribs)
m fixup
Yosh (talk | contribs)
m oops
Line 22: Line 22:


=== * ([[Type:bool|bool]]) ===
=== * ([[Type:bool|bool]]) ===
Returns <code>true</code> if <code>Character</code> is a number, <code>false</code> otherwise.
Returns <code>true</code> if <code>Character</code> is a number, <code>false</code> otherwise. Numbers recognized by this node are given the Unicode delegation [https://www.compart.com/en/unicode/category/Nd <code>Nd</code>], [https://www.compart.com/en/unicode/category/Nl <code>Nl</code>], or [https://www.compart.com/en/unicode/category/No <code>No</code>].


== Examples ==
== Examples ==

Revision as of 20:52, 28 April 2024

Is Number
Character
*
Characters

The Is Number node takes in a character literal and returns if that character is a number.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns true if Character is a number, false otherwise. Numbers recognized by this node are given the Unicode delegation Nd, Nl, or No.

Examples

An easy way to remember the difference between this node and the Is Digit node is: All digits are numbers, but not all numbers are digits.

  • ½, ①, 1, 2, 3 all count as numbers.
  • 1, 2, 3 also count as digits.

See Also