home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1999 April / CD_Shareware_Magazine_31.iso / WIN95 / INTERNET / ftpctrl3b8.exe / %MAINDIR% / Scripts / Example22.ftp < prev    next >
Encoding:
Text File  |  1999-02-07  |  422 b   |  19 lines

  1.  
  2. NumVariable I
  3.  
  4. Let A = "This is a string!"
  5. Let A = "Substr(%%A%%, 11, 6), Substr(%%A%%, 1, 7)!"
  6. Message "%%A%%"
  7. Let A = "This is a string!"
  8. Message "Substr(%%A%%, 1, 4)"
  9. Message "Substr(%%A%%, 6, 2)"
  10. Message "Substr(%%A%%, 9, 1)"
  11. Message "Substr(%%A%%, 11, 6)"
  12.  
  13. Let I = Position("string", "%%A%%")
  14. Message "The position of 'string' is %%I%%"
  15.  
  16. Let I = Length("%%A%%")
  17. Message "The length of A is %%I%%"
  18.  
  19.