Help for this page

Select Code to Download


  1. or download this
    my ($match) = $body =~ /(?<=a)([^c]*c[^c]*c[^c]*)(?=c)/;
    
  2. or download this
    my ($match) = $body =~ /(?<=a)([^c]*(?:c[^c]*){2})(?=c)/;
    
  3. or download this
    my ($match) = $body =~ /(?<=a)([^ac]*(?:c[^ac]*){2})(?=c)/;