in reply to Re: Regular Expression, Catching Variables
in thread Regular Expression, Catching Variables
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".
Update: the only other small refinement would be to add () around the match-global to make it super clear that this is list context:#!/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.)
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 | |
by Marshall (Canon) on Jun 26, 2009 at 23:15 UTC |