Align fields on a report? : Alignment « Report « Perl






Align fields on a report?

   

    #!/usr/local/bin/perl -w

    while (<ARGV>)
    {
        chomp;
        ($number,$type,$name,$price,$desc) = split (/\|/);
        write;
    }

    format STDOUT =
    @>>> @|||||| @<<<<<<<<< @<<<<<<<<<<<<< $@####.##
    @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    $.,$number,$type,$name,$price,$desc

    .

   
    
    
  








Related examples in the same category

1.Align left, right and center