hey guys,
another question for thoughts,
i'm matching this:
when i use
[CODE=perl]
if($data1 =~ /^(\s\D\D\D:.+\; )/)
[/CODE]
it doesn't match
but when i use
[CODE=perl]
if($data1 =~ /^(\s\D\D\D:.+\; )/)
[/CODE]
it matches
so why is it although i know "*" matches 0 or more times and "+" matches 1 or more times
another question for thoughts,
i'm matching this:
Code:
MHI:;
[CODE=perl]
if($data1 =~ /^(\s\D\D\D:.+\; )/)
[/CODE]
it doesn't match
but when i use
[CODE=perl]
if($data1 =~ /^(\s\D\D\D:.+\; )/)
[/CODE]
it matches
so why is it although i know "*" matches 0 or more times and "+" matches 1 or more times
Comment