home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / IsInt.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  167 b   |  5 lines

  1. IsInt(-12345)     ;returns 1
  2. IsInt(3.0000)     ;returns 1
  3. IsInt("5432")     ;returns 0 since is a string
  4. IsInt(7.5 - 4.5)  ;returns 1 since evaluates to integer 3
  5.