Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^2: Report generation through formats

by ankit.tayal560 (Beadle)
on Oct 14, 2016 at 07:19 UTC ( [id://1173989]=note: print w/replies, xml ) Need Help??


in reply to Re: Report generation through formats
in thread Report generation through formats

Thanks for the suggestions . I will definitely incorporate then into the script. but apart from using formats also is there any other way to achieve the results which I want??/

  • Comment on Re^2: Report generation through formats

Replies are listed 'Best First'.
Re^3: Report generation through formats
by duelafn (Parson) on Oct 14, 2016 at 10:18 UTC

    For your report, printf is plenty sufficient (See sprintf for the formatting codes). For example:

    use strict; use warnings; my $APPROX_LINES_PER_PAGE = 4; my $sep = ('-'x60)."\n"; my $header = <<HEADER; ============================================================ Name Format of match matches played runs scored page %d ============================================================ HEADER my $format = "%-18s %-8s %-15s %s\n"; my $cur_pers = ''; my $page = 0; my $lines = 0; while (<DATA>){ chomp; my @elements = split /!/,$_; if (0 == $page or $lines >= $APPROX_LINES_PER_PAGE) { print $sep if $page; print "\n";# or do whatever you want to do between pages $page++; $lines = 0; $cur_pers = ''; printf $header, $page; } # check if person change if ($cur_pers and $cur_pers ne $elements[0]) { print $sep; $lines++; } $cur_pers = $elements[0]; printf $format, @elements; $lines++; } print $sep; print "\n"; __DATA__ sachin tendulkar!ODI!434!12000 sachin tendulkar!Test!246!10900 sachin tendulkar!T20!189!5000 sourav ganguly!ODI!334!8000 sourav ganguly!Test!235!5000 sourav ganguly!T20!124!1800 rahul dravid!ODI!387!9000 rahul dravid!Test!212!5980 rahul dravid!T20!43!1345

    I've added some sample pagination - I'm not sure what you had in mind there, but you should be able to extend it to what you wanted.

    Good Day,
        Dean

Re^3: Report generation through formats
by marto (Cardinal) on Oct 14, 2016 at 07:24 UTC

    Remove perl from the equation, write down the steps to achieve this, take the steps you have and apply them to your data. Go round this loop a few times to iron out the bugs. See Pseudocode. Once you have a working process then implement it in perl (or whatever).

      See Pseudocode.

      :) For the idea, but write the goals and steps in plain english or whatever you speak

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1173989]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-19 15:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found