home *** CD-ROM | disk | FTP | other *** search
- /*
- demonstrate the String::split() method for splitting
- a filename string into path, root, extension
- */
- fullname = disk()+"\\test.do";
- ? "full path and name is ",fullname;
- ? "split into 3-String Collection: ",split(fullname);
-