home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 3 / CDASC03.ISO / news / 1601 / strtest.bas < prev    next >
BASIC Source File  |  1993-04-01  |  203b  |  13 lines

  1.  
  2.  
  3.     ' Test the left$() and right$() functions
  4.  
  5.     test$ = "Here is my test string."
  6.  
  7.     for i = -5 to len(test$)
  8.  
  9.         print left$(test$, i)
  10.         print right$(test$, i)
  11.  
  12.     next i
  13.