home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / StringIsFloat.au3 < prev    next >
Text File  |  2004-09-22  |  353b  |  8 lines

  1. StringIsFloat("1.5")  ;returns 1
  2. StringIsFloat("7.")   ;returns 1 since contains decimal
  3. StringIsFloat("-.0")  ;returns 1
  4. StringIsFloat("3/4")  ;returns 0 since '3' slash '4' is not a float
  5.  
  6. StringIsFloat(1.5)    ;returns 1 since 1.5 converted to string contain .
  7. StringIsFloat(1.0)    ;returns 0 since 1.0 converted to string does not contain .
  8.