home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / xcmd / prctclxf.sit / DemoStack / card_7746.txt < prev    next >
Text File  |  1990-08-28  |  1KB  |  52 lines

  1. -- card: 7746 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 2685
  5. -- name: Regular Expressions
  6.  
  7.  
  8. -- part contents for background part 9
  9. ----- text -----
  10. DemoStack 0.9
  11.  
  12. -- part contents for background part 1
  13. ----- text -----
  14. Regular Expressions
  15.  
  16. -- part contents for background part 12
  17. ----- text -----
  18. Card #8
  19.  
  20. -- part contents for background part 14
  21. ----- text -----
  22.  
  23.  
  24. Research is used for searching for a pattern in either a single input string, or in a list of containers, which may be in more than one card.
  25.  
  26. REGULAR EXPRESSIONS
  27.  
  28. Following is a brief summary of the regular expressions understood by Research.
  29.  
  30. c         match character c
  31. \c       take away special meaning of c
  32. [...]    characters in [...]; ranges like a-z
  33. [^...]  characters not in [...]; ranges like a-z
  34. ^r      anchor to start of line
  35. r$     anchor to end of line
  36. r*     zero more times
  37. r+     one or more times
  38. r?     zero or one time
  39. r{n}  repeat n times
  40. r{n,} repeat n times or more
  41. r{,m} repeat 0 to m times
  42. r{n,m} repeat n to m times
  43. \(r\) tag expression
  44. \n      refer to n'th tagged expression
  45. r1|r2 expression r1 or r2
  46. (r)   group expression
  47.  
  48.  
  49.  
  50. -- part contents for background part 13
  51. ----- text -----
  52. Description