![]() |
|
go ahead... be a heretic | |
PerlMonks |
Re: regular expression helpby ikegami (Patriarch) |
on Jun 03, 2009 at 19:54 UTC ( #768139=note: print w/replies, xml ) | Need 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.
In Section
Seekers of Perl Wisdom
|
|