Hi darisler,
Trying to write some code that reads in a list of coordinates, must have an odd number for some odd reason... but I'd like to know how to define '$coords' recursively

Do you have to define '$coords' recursively or repeatedly? And I don't know why you are using your regex like you are doing. If I get what you wanted, you can simply use split to get all the coords into an array, so they are in right order as follow in your original string, then loop for this like so:

use v5.16; use strict; my $prBoundaryString = <<endPrBoundary; '( (0.01 0.02) (0.0 1328.23) (0.01 0.02) (0.04 0.53) (0.03 44.23) (0.0 1328.23) (0.04 0.53) ) endPrBoundary say "prBoundaryString=$prBoundaryString"; my @pts = grep { /\d+/ } split /\s+|[()]/, $prBoundaryString; my $count = 0; for ( 0 .. $#pts ) { if ( $_ % 2 == 0 ) { print qq[-x$count=$pts[$_]] } else { print qq[-y$count=$pts[$_]]; $count++ } }
Output:
prBoundaryString='( (0.01 0.02) (0.0 1328.23) (0.01 0.02) (0.04 0.53) +(0.03 44.23) (0.0 1328.23) (0.04 0.53) ) -x0=0.01 -y0=0.02 -x1=0.0 -y1=1328.23 -x2=0.01 -y2=0.02 -x3=0.04 -y3=0.53 -x4=0.03 -y4=44.23 -x5=0.0 -y5=1328.23 -x6=0.04 -y6=0.53
Note: I modified the string you gave to show that it would get it in right order.
Hope this helps

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me

In reply to Re: qr for recursive regex? by 2teez
in thread qr for recursive regex? by darisler

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.