my code is given below which is not working properly.

Since you've not given any idea of how it is "not working properly", here is the output of running your code as it stands:

. newwack="rac_client_$curr_date.ack" CL". newwack="rac_client_$curr_date.ack" CL". newfile="ods_nt_cash_acc_$curr_date.csv" CL". IN_DIR="obc\5060" CL". newwack="rac_vendor_$curr_date.ack"

The problems with it seem to include:

Fixing these issues, using indentation and simplifying the logic gives us:

open (data, "<input.txt"); while (<data>) { if (/"(.*)"\)(.*)$/) { $parameter = $1; $var = $2 . "\n"; } else { $var = $_; } if (/;;/) { print "\n"; next; } print "$parameter $var"; } close data;

which produces this output:

BR old_file="ods.csv" BR newfile="ods_nt_$curr_date.csv" BR newwack="rac_client_$curr_date.ack" BR IN_DIR="odc\5060" CL old_file="ods_cash.csv" CL newfile="ods_nt_cash_acc_$curr_date.csv" CL newwack="rac_cash_acc_$curr_date.ack" CL IN_DIR="obc\5060" CUA old_file="ods_ven.csv" CUA newfile="ods_nt_ven_$curr_date.csv" CUA newwack="rac_vendor_$curr_date.ack" CUA IN_DIR="ofc\5060"

Formatting of the whitespace, compatibility with strict, conversion to 3-argument open, etc. are all left as an exercise (so you at least have some things still to do on your own).


In reply to Re: Extract content between two special character which is in single line or another line by hippo
in thread Extract content between two special character which is in single line or another line by ararghat

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.