Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^2: Regular Expression, Catching Variables

by Marshall (Canon)
on Jun 23, 2009 at 16:54 UTC ( [id://774108]=note: print w/replies, xml ) Need Help??


in reply to Re: Regular Expression, Catching Variables
in thread Regular Expression, Catching Variables

Wow! Most excellent!

Just a small addition, I think there is a missing ")" which I added below..right there at the tail-end ")/g". I also changed this to put the tokens directly into an array without the need for "while".

#!/usr/bin/perl -w use strict; my $line = "2006-01-01,Kims,Watson,406,560(centrifuge, refrig.),569,60 +7(dark room),210-211,101(ultracentrifuge),104-105(crystal growth room +s),660(centrifuge, refrig.)"; my @tokens = $line =~ m/([^,(]+(?:\([^)]*\))?)/g; foreach my $token (@tokens) { print "$token\n"; } __END__ Prints: 2006-01-01 Kims Watson 406 560(centrifuge, refrig.) 569 607(dark room) 210-211 101(ultracentrifuge) 104-105(crystal growth rooms) 660(centrifuge, refrig.)
Update: the only other small refinement would be to add () around the match-global to make it super clear that this is list context:
my @tokens = ($line =~ m/([^,(]+(?:\([^)]*\))?)/g);

Replies are listed 'Best First'.
Re^3: Regular Expression, Catching Variables
by suaveant (Parson) on Jun 24, 2009 at 14:08 UTC
    You are right, when I copied it I ended up with a space there instead of a paren, and deleted it, no idea what happened, thanks.

                    - Ant
                    - Some of my best work - (1 2 3)

      I wouldn't worry about, the idea of your regex was great. This was just a typo. I have made many CTL-C CTL-V errors myself and many others! no biggie. I hope this whole thread helped the poster. Again your regex was GREAT!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (1)
As of 2024-04-19 00:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found