repl.txt (495B)
1 2 {{alias}}( str ) 3 Tests whether a string contains only numeric digits. 4 5 Parameters 6 ---------- 7 str: string 8 Input string. 9 10 Returns 11 ------- 12 bool: boolean 13 Boolean indicating whether a string contains only numeric digits. 14 15 Examples 16 -------- 17 > var bool = {{alias}}( '0123456789' ) 18 true 19 > bool = {{alias}}( 'abcdef' ) 20 false 21 > bool = {{alias}}( '0xff' ) 22 false 23 > bool = {{alias}}( '' ) 24 false 25 26 See Also 27 -------- 28