Help for this page

Select Code to Download


  1. or download this
    Some Field   : some value
    Another Field: 1234
    Different One: 5678
    ...
    .
    .
    .
    
  2. or download this
    something   number1   number2   word
    some value    1234    5678       foo
    some else     4321    8765       bar
    
  3. or download this
    while(<>){
        if ( /Some Field/ ... /Yet Another/ ) {
            push (@array, $_);
            #do something with the info...
        }
    }