home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / shareware / autoit-v3-setup.exe / Examples / Helpfile / StringIsDigit.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  183 b   |  5 lines

  1. StringIsDigit("12333")  ;returns 1
  2. StringIsDigit("1.5")    ;returns 0 due to decimal point
  3. StringIsDigit("1 2 3")  ;returns 0 due to whitespace
  4. StringIsDigit("")       ;returns 0
  5.