Many thanks for your suggestion.
You all are correct, for ease of explanation I did not mention that the inputfile is a XML file.
Basically I have a hash which contains the tags of xml and their default values .
Now only those tags will be replaced which has a key in the hash. So the xml inputfile actually looks like :

**********************************
<user>
<default>dean</default>
</user>
<id>
<default>38339</default>
</id>
<workarea>
<default>/home/dean</deault>
</workare>
************************************

And lets assume the hash has 2 keys for id and workarea :

%hash = (id => 94848, workarea=> '/home/unix' )
So in this case while parsing the xml , I will only replace <default> values for <id> and <workarea>


In reply to Re^2: parsing a multi-line pattern and replacing by ghosh123
in thread parsing a multi-line pattern and replacing by ghosh123

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.