Help for this page

Select Code to Download


  1. or download this
    while ($string =~ /(pattern)/g) {
        do_something_with($1);
    }
    
  2. or download this
    while ($string =~ /(?=(patter))/g) {
        do_something_with($1);
    }