home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / dobject / split.do < prev    next >
Encoding:
Text File  |  1991-07-25  |  235 b   |  8 lines

  1. /*
  2.     demonstrate the String::split() method for splitting
  3.     a filename string into path, root, extension
  4. */
  5. fullname = disk()+"\\test.do";
  6. ? "full path and name is ",fullname;
  7. ? "split into 3-String Collection: ",split(fullname);
  8.