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 | |
NT2not theNT5in your code sample, are you sure that this is the regex that is actually matching? – a'r Dec 8 '11 at 14:54