Help for this page

Select Code to Download


  1. or download this
    while (content =~ m%One(.*?)three(.?)five\s+six(.*?)this%gs) {
    $var1 = $1 ;
    $var2 = $2 ;
    $var3 = $3 ;
    print "$var1\t$var2\t$var3\n" ;
    }
    
  2. or download this
    while (content =~ m%One(.*?)three(.?)five\s+six(.*?)this%gs) {
    print(STDERR  "[", pos($content), "]") ;
    $var1 = $1 ;
    ...
    $var3 = $3 ;
    print "$var1\t$var2\t$var3\n" ;
    }
    
  3. or download this
    [
    two   four   seven
    48430]
    
  4. or download this
    [48226]
    
    three   more   numbers
    
  5. or download this
    [50757]
    
    first   three   numbers
    ...
    
    third   three   numbers
    [51826][52896]