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!