Help for this page

Select Code to Download


  1. or download this
    while (content =~ m%One(.*?)three(.?)five\s+six(.*?)this%gs) {
           ^^^^^^^
    
  2. or download this
    $|=1;
    while (
    ...
       $var3 = $3 ;
       print "$var1\t$var2\t$var3\n" ;
    }