home *** CD-ROM | disk | FTP | other *** search
-
- NumVariable I
-
- Let A = "This is a string!"
- Let A = "Substr(%%A%%, 11, 6), Substr(%%A%%, 1, 7)!"
- Message "%%A%%"
- Let A = "This is a string!"
- Message "Substr(%%A%%, 1, 4)"
- Message "Substr(%%A%%, 6, 2)"
- Message "Substr(%%A%%, 9, 1)"
- Message "Substr(%%A%%, 11, 6)"
-
- Let I = Position("string", "%%A%%")
- Message "The position of 'string' is %%I%%"
-
- Let I = Length("%%A%%")
- Message "The length of A is %%I%%"
-
-