I have a CSV file I am manipulating into something that is readable by my other program. Perl has been a big help so far. There is a significant learning curve when it comes to dereferencing arrays and their contents. That is probably part of my problem.

I would like to initialize a new field in my CSV to receive extracted data when I parse an existing field. If there was always a result from the parse then I wouldn't have an "Use of uninitialized value in substitution" message later on.

How do I set a dereferenced array to ""?

Am I asking the right Question?

Right now the following doesn't work.

#Initialize to first character of first field, no warnings #Creates extra unneeded data. ($row->[15]) = $row->[0] =~ /(.)/; #This appears to match undefined and sets it to "", warnings #^ * matches null string many times in regex; marked by <--HERE in m/ +(^ * <-- HERE $) / at convertACsv.pl line 86. #Use of uninitialized value in substitution (s///) at convertACsv.pl l +ine 86, <_GEN_0> line 1. $row->[15] =~ s/ (^ *$) //gx; #This appears to match undefined and sets it to "", warnings #Use of uninitialized value in substitution (s///) at convertACsv.pl l +ine 86, <_GEN_0> line 1. $row->[15] =~ s/ (^z) //gx; #oops, dropped the "\" $row->[15] =~ s/ (^\z) //gx; #Why doesn't one of these work? ($row->[15]) = ""; ($row->[15]) = ("");

In reply to Initialize or Match undef without warning by JobC

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.