Hi, Can u please give me a sample code for doing arithmatic operation in PERL. My data file contains records like this (record delimiter is *) :
* Movie="ABC" show=4 10 20 30 14 90 30 21 13 11 10 09 23 22 05 22 15 19 20 * Movie="XYZ" show=4 10 20 30 14 90 30 21 13 11 10 09 23 22 05 22 15 19 10 * Movie ... ... ..
And the '* Movie...' that line is like a header for a record and the numbers like ( 10 20 30 in the first record) are stored in one individual line and so on, its not stored linear. I want to calculate the numbers which is equal to or more than 20 in that record, in this case in the first record i've to add (20+30+90+30+21+23+22+20) and so on for the remaining records. and i want to display the result in a ordinary tabular structure like this.
Movie Show Collection>20 ABC 4 256 XYZ 4 236
Can u please help me? Thanks.

Edit Masem 2001-11-19 - Added CODE tags


In reply to Arithmatic operation in PERL by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.