Help for this page

Select Code to Download


  1. or download this
    if( $text =~ /$query/i ) {
        while ( $text =~ /$query/gi ) {
    ...
    else {
        ## Is this possible?
    }
    
  2. or download this
    while ( $text =~ /($query|$query_modified)/gi ) {
        if( $1 eq $query ) {
    ...
            do_something_else();
        }
    }