home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / Perl / t / re_tests next >
Text File  |  1995-01-19  |  73b  |  4 lines

  1. a.+?c    abcabc    y    $&    abc
  2. (a+|b)*    ab    y    $&-$1    ab-b
  3. (a+|b){0,}    ab    y    $&-$1    ab-b
  4.