home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / backup / star-1.3.1.tar.gz / star-1.3.1.tar / star-1.3.1 / README.pattern < prev    next >
Text File  |  1997-04-29  |  665b  |  20 lines

  1. Star includes a pattern matcher based on the algorithm
  2. presented by Martin Richards in:
  3.  
  4. "A Compact Function for Regular Expression Pattern Matching", 
  5. Software-Practice and Experience, Vol. 9, 527-534 (1979)
  6.  
  7. Several changes have been made to the original source which has been
  8. written in BCPL:
  9.  
  10. '/'    is replaced by    '!'        (to allow UNIX filenames)
  11. '(',')' are replaced by    '{', '}'
  12. '\''    is replaced by    '\\'        (UNIX compatible quote)
  13.  
  14. Character classes have been added to allow "[<character list>]"
  15. to be used.
  16. Start of line '^' and end of line '$' have been added.
  17.  
  18. A description is available in the man page for the match program.
  19. It may be found in man/man1/match.1
  20.