メインコンテンツまでスキップ
バージョン:25.2

digit, digits

  • type for "is a" operator
    • Examples: +

       put "7" is a digit —> True
       if input is all digits then put "It's a number!"
    • Related: is a

  • pattern element type (new in 1.81)
    • Examples: +

       put every occurrence of <digit> in "A64D18" —> [6,4,1,8]