in reply to Re^2: Parsing a file and finding the dependencies in it
in thread Parsing a file and finding the dependencies in it
It's not a single regular expression but two separate regular expressions, connected by the ... operator (see perlop).
Also, every regular expression matches against $_ by default, so $_ =~ /foo/ is identical to /foo/.
|
|---|