Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl -l
    
    ...
    DATA01  DATA11  DATA21
    
    END
    
  2. or download this
    xxx=DATA00, xxx=DATA10, xxx=DATA20;
    xxx=DATA01, xxx=DATA11, xxx=DATA21;
    
  3. or download this
    print {$OUT} "xxxxx", $data[0], "yyy", $data[2],";","\n";
    
  4. or download this
    print 'xxxxx', join('yyy' => (split)[0,2]), ';';
    
  5. or download this
    xxxxxDATA00yyyDATA20;
    xxxxxDATA01yyyDATA21;