![]() |
|
P is for Practical | |
PerlMonks |
Regex - backreferencing multiple matches in one group.by why_bird (Pilgrim) |
on Mar 04, 2008 at 11:01 UTC ( #671843=perlquestion: print w/replies, xml ) | Need Help?? |
why_bird has asked for the wisdom of the Perl Monks concerning the following question: Me again---having some trouble with regexes (again..!) This is about grouping, and (back?)referencing. I'm reading in a configuration file, and for each line I end up with a string like this:
I want to get the name of the table (in this case 'Frequency'), and then each of the table variables (here represented by A, B, C) the variables will always be inside square brackets, and there are between 1 and 4 inclusive of them (but I won't know how many). So, I tried a regex like this:
For the string above, the regex returned: When I replaced the {1,4} with a {3} (I thought there might have been a problem with greediness) I got exactly the same output as above.. I sort of expected (or rather hoped!) that the {1,4} would create multiple matches which would go into $2, $3, $4. Should it and have I done something wrong, or is that not how it works? I read the perdoc info (and some other stuff), but couldn't gather from that how it was supposed to work in this case. Any suggestions, in either case? Thankyou again monks, you are giving me an enormous amount of help. It makes learning Perl (even more) fun when there are knowledgable people to point out your stupid mistakes/misunderstandings :) Those are my principles. If you don't like them I have others. -- Groucho Marx .......
Back to
Seekers of Perl Wisdom
|
|