in reply to Re: Regex failing when the line starts with "./"
in thread Regex failing when the line starts with "./"
my ($value) = $line =~ /\.[\\\/](.*);/;
That won't match lines starting with '/.'
Update: ./ /. \. .\.... too many dots and slashes. I got it wrong.
:)
Dave
|
|---|