Help for this page

Select Code to Download


  1. or download this
    while ( $text =~ /$query/gi ) {
    do_something();
    }
    
  2. or download this
    while ( $text =~ /$query/gi ) {
    do_something();
    ...
    while ( $text =~ /$query_modified/gi ) {
    do_something_different();
    }