"Please do the needful"

Does this help? I expect it only helps a little. That's the difference between asking for a solution and asking to be taught how to implement a solution. Saying "I donno perl" but then not trying to learn it, when you want to use it, is just silly. Please review the tutorials already shown to you.

use strict; use warnings; use feature 'say'; use Data::Dumper; chomp( my @lines = <DATA> ); shift @lines; my @output = map { /(\S+)\s+(\S+)/; my $dir = $2 eq 'WR' ? 'wire' : 'r +eg'; "$dir $1" } @lines; say Dumper \@output; __END__ Description RD/WR lfxosc_bp_c_jtag WR lfxosc_pd_c_jtag WR lfxosc_i_mult_ctrl_c_jtag[0] WR lfxosc_i_mult_ctrl_c_jtag[1] WR lfxosc_i_mult_ctrl_c_jtag[2] WR lfxosc_r_ref_ctrl_c_jtag[0] WR lfxosc_r_ref_ctrl_c_jtag[1] WR lfxosc_r_ref_ctrl_c_jtag[2] WR rd_rsrv_hfxosc_jtag RD rd_rsrv_hfxosc_jtag RD
Output:
$ perl 1196402.pl $VAR1 = [ 'wire lfxosc_bp_c_jtag', 'wire lfxosc_pd_c_jtag', 'wire lfxosc_i_mult_ctrl_c_jtag[0]', 'wire lfxosc_i_mult_ctrl_c_jtag[1]', 'wire lfxosc_i_mult_ctrl_c_jtag[2]', 'wire lfxosc_r_ref_ctrl_c_jtag[0]', 'wire lfxosc_r_ref_ctrl_c_jtag[1]', 'wire lfxosc_r_ref_ctrl_c_jtag[2]', 'reg rd_rsrv_hfxosc_jtag', 'reg rd_rsrv_hfxosc_jtag' ];


The way forward always starts with a minimal test.

In reply to Re: How to process .csv file by 1nickt
in thread How to process .csv file by Sivalakshmi

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.