Help for this page

Select Code to Download


  1. or download this
    push (@results, "$1::$2::$3") while $result_content =~ /$regex/g;
    
  2. or download this
    while ($result_content =~ /$regex/g) {
        push (@results, "$1::$2::$3");
    }