Help for this page

Select Code to Download


  1. or download this
    substr($_, $fld1_start, $fld1_len) = substr($_,$fld2_start, $fld2_len)
    +;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    print $f->field, "\n";
    
    print Dumper $f;
    
  3. or download this
    ABCDEF
    FEDCBA
    $VAR1 = bless( {
                     'field' => 'FEDCBA'
                   }, 'Foo' );
    
  4. or download this
    00001AAAAA
    00002AAAAA
    ...
    00008AAAAA
    00009AAAAA
    00010AAAAA
    
  5. or download this
    #!/usr/bin/perl
    
    ...
      
      print "LINE: ", $str->line(), "\n" x4;
    }
    
  6. or download this
    package String;
    
    ...
    }
    
    1;
    
  7. or download this
    BEFORE:   $VAR1 = bless( {
                     'line' => '00001AAAAA
    ...
    
    etc.