My regex matches the last set of alpha characters in the line, regardless of what I do. I want it to match only the first occurence. I have tried using the non-greedy operator but it stubbornly matches the right-most set of alpha characters, in this case giving $1 the value "Trig", which isn't what I want. I want $1 to be "02.04.07.06 Geerite".

Any help would be appreciated!

CODE:

elsif ($line =~ /\s(\d{2}\.\d{2}\.\d{2}\.\d{2}\s[[:alpha:]]*?)/)
{
    print OUTPUT "NT5 ".$1." | | \n";
}

SOURCE:

02.04.07.06 Geerite Cu8S5 R 3m, R 3m, or R 32 Trig

OUTPUT:

NT2 32 Trig | |

So in other words, what I want as output is:

NT2 02.04.07.06 Geerite | |

link|improve this question
Your output is prefixed with NT2 not the NT5 in your code sample, are you sure that this is the regex that is actually matching? – a'r Dec 8 '11 at 14:54
feedback

4 Answers

If I change your code to

$line="     02.04.07.06 Geerite Cu8S5 R 3m, R 3m, or R 32 Trig ";
if ($line =~ /\s(\d{2}\.\d{2}\.\d{2}\.\d{2}\s[[:alpha:]]*?)/) { print "NT5 ".$1." | | \n"; }

I get this output:

NT5 02.04.07.06  | | 

Making the * non-greedy, the word Geerite is included in the output.

Your observed output probably comes from a different branch of the if-elsif-else tree.

link|improve this answer
feedback

This should work for you:

perl -e '$_ = "02.04.07.06 Geerite Cu8S5 R 3m, R 3m, or R 32 Trig"; print "$1\n" if /(\d\d\.\d\d\.\d\d\.\d\d \w+)/'

prints:

02.04.07.06 Geerite

The regex on its own:

/(\d\d\.\d\d\.\d\d\.\d\d \w+)/
link|improve this answer
Thanks so much for your answers. Indeed it was an error elsewhere in the elsif tree. – Michael Paige Dec 8 '11 at 15:58
Feel free to upvote. ;) – pgl Dec 8 '11 at 16:15
feedback

Make [[:alpha:]] greedy:

$line = '   02.04.07.06 Geerite Cu8S5 R 3m, R 3m, or R 32 Trig';
if ($line =~ /\s(\d{2}\.\d{2}\.\d{2}\.\d{2}\s[[:alpha:]]*)/) {
    print OUTPUT "NT5 ".$1." | | \n";
}

output:

NT5 02.04.07.06 Geerite | | 
link|improve this answer
feedback

Your regex can't match " 32 Trig", there must be some other problem.

If I add a space at the beginning of your example string and remove the ungreedy ? after the last quantifier, it will produce the output you want.

$line =~ /\s(\d{2}\.\d{2}\.\d{2}\.\d{2}\s[[:alpha:]]*)/

The [[:alpha:]]*? will match as less as possible, so because there is no more pattern following, it will match 0 characters.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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