Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: regular expression help

by ikegami (Patriarch)
on Jun 03, 2009 at 19:54 UTC ( [id://768139]=note: print w/replies, xml ) Need Help??


in reply to regular expression help

To match "X,X,X", the pattern will look something like /X(?:,X)*/. Since your "X" is rather long, you might want to consider splitting on commas first, then parsing each item in the list.

Replies are listed 'Best First'.
Re^2: regular expression help
by Roy Johnson (Monsignor) on Jun 03, 2009 at 20:00 UTC
    ...consider splitting...
    Or define your X subpattern as a separate regex, then build the pattern with it:
    my $subpat = qr/(?:<\*\d+>)?([^<]+)<(\d+):(\d+)>/; $str =~/$subpat(?:,$subpat)*/;
    However, the capturing parentheses are not going to capture everything this way.

    Caution: Contents may have been coded under pressure.

      However, the capturing parentheses are not going to capture everything this way.

      That's why I didn't recommend it. Perl's match operator can match extremely complex expressions (the initial purpose of regular expressions) and it can extract data from strings, but it's not so good at doing both at once. (At least not before 5.10. 5.10 added a bunch of tools that might help.)

      Thanks for the suggestion...I will try doing something like this!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://768139]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (8)
As of 2024-03-28 09:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found