home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Classes / String / README next >
Text File  |  1993-01-30  |  928b  |  23 lines

  1. This is the source code and documentation for the String class, a simple class
  2. which handles strings and provides an interface to the standard C string
  3. functions.  Most of the methods are provided for convenience and are probably
  4. not really necessary.  A simple test program is provided which demonstrates how
  5. to use the object and tests a few of the basic features.  To compile the test
  6. program StringTest.m, type:
  7.  
  8. cc -O -Wall -o StringTest StringTest.m -lNeXT_s
  9.  
  10. If you have a feature you'd like to see added to the String class, please
  11. let me know.  For example, eventually I plan to implement a method to remove
  12. a substring or a range of characters from a string as well as a method to
  13. insert one string into another.  (In other words, a larger variety of string
  14. handling features.)
  15.  
  16. Any questions, requests, or problems should be directed to me at:
  17.  
  18. Don Yacktman
  19. 4279 N. Ivy Lane
  20. Provo, UT, 84604
  21. yackd@alaska.et.byu.edu
  22.  
  23.