Hi Mahesh,

We have lot of ways to do this i can suggest you some ways,

On customizing your code you can use like,

use strict; use warnings; open (RD, "input.txt") or die; my @Read = <RD>; close (RD); open (WR2, ">>output.txt") or die; my $count=0; my $C="2001-1041"; my $found=0;#######Temporary variable to find the content in whole fil +e for (my $read=0; $read <= $#Read; $read++) { if($Read[$read] =~ /$C/) { $count++;$found++; } } print WR2"$count=$C\n" unless($found);

In other way without reading the file in array, you can do like,

use strict; use warnings; open (RD, "input.txt") or die; open (WR2, ">>output.txt") or die; my $count=0; my $C="2001-1041"; my $found=0;#######Temporary variable to find the content in whole fil +e while(<RD>){ if($_ =~ /$C/) { $count++;$found++; } } print WR2"$count=$C\n" unless($found);

You can do like this also

use strict; use warnings; open (RD, "input.txt") or die; my $input; do{ local undef $/; ######To undef the input record separator '$/' $input=<RD>; }; #####To read the whole file in single scalar variable open (WR2, ">>output.txt") or die; my $count=0; my $C="2001-1041"; while($input =~ /$C/g) { $count++; } print WR2 "$count=$C\n" unless($count);

Punitha


In reply to Re: Need help regarding "search in file" by Punitha
in thread Need help regarding "search in file" by mpatharkar

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.