So, after looking at your code, I'm guessing what you want is to process a form that looks something like
<input type="text" name="edit_name_1" value="hello" size="20"> <input type="text" name="edit_name_2" value="world" size="20"> <input type="text" name="edit_name_3" value="form" size="20">
..where you have a number of edit_name_n fields.

I suggest you do the following:

foreach my $key ( keys %ARGS ) { # skip any arguments that aren't of interest next if ( $key !~ m/^edit_name_(\d+)$/ ); my $num = $1; # captured from the regexp my $name = $ARGS{$key}; $m->out( "<p>Edit field $num = $name</p>" ); }

In reply to Re: can't use string as an array ref.... by monarch
in thread can't use string as an array ref.... by inblosam

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.