0 votes
in Perl by
“Perl regular expressions match the longest string possible”. What is the name of this match?

1 Answer

0 votes
by

It is called as “greedy match” because Perl regular expressions normally match the longest string possible.

...