home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / languages / perl_5 / !Perl / t / re_tests < prev    next >
Encoding:
Text File  |  1995-01-19  |  73 b   |  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.