vote up 1 vote down star

Hi, I've been trying to do the following:

 if (m/(foobar)\{2,}?/ig)

to process a file and only act on those lines where greater than 2 occurences of 'foobar' are present. Not working - I suspect it may need the "back-referencing" technique, but I'll be pleasantly surprised if someone here can do it with a simple matching technique

flag

What's wrong with /(?:foobar.*){2,}/i ? – Inshallah Jul 29 at 18:53
Another great solution. Thank you Inshalla – DBMarcos99 Jul 29 at 19:44

2 Answers

vote up 7 vote down check

it's pretty simple:

if ( $str =~ /foobar.*foobar/ ) {

Of course - your foobar might be a bit complex, so let's use backreference:

if ( $str =~ /(foobar).*\1/ ) {

And what if you'd want to have it matched only if this is 5 times in line? Simple:

if ( $str =~ /(foobar)(.*\1){4}/ ) {

or better:

if ( $str =~ /(foobar)(?:.*\1){4}/ ) {

For details on ?: and other such magical strings, you can chech perldoc perlre.

link|flag
Thx for this. I'm putting this as my accepted answer as you gave more than one solution (even though Seth's answer is great too). Thx, Mark – DBMarcos99 Jul 29 at 19:20
vote up 7 vote down

You can't use the {} quantifiers because that's only for repeats. (e.g. "foobar foobar foobar"). If your string had "fooobar more foobar" it wouldn't match. The easiest and clearest way is do it by shoving the matches into an array like this:

 my @matches = $str =~ /(foobar)/ig;

Then @matches would hold all the matches.

if (@matches >=2) {
   # work in special sauce
}
link|flag
That seems to be exactly what I was after! I understand the {} quantifiers a little more now - Thanks. – DBMarcos99 Jul 29 at 18:51
You are welcome – seth Jul 29 at 18:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.