Help for this page

Select Code to Download


  1. or download this
    my $re = qr/(?:(simple).*?)+/;
    my $string = "This is a simple thing just a simple simple thing.";
    ...
    say $1 if $1; # says simple
    say $2 if $2; # nothing
    say $3 if $3; # nothing
    
  2. or download this
    my $re = qr/(?:(simple).*?)+/;
    my $string = "This is a simple thing just a simple simple thing.";
    ...
    say $1 if $1; # says simple
    say $2 if $2; # says simple
    say $3 if $3; # says simple