Greediness
Learn how to apply greedy and nongreedy quantifiers of regex in Perl.
We'll cover the following...
Greedy quantifiers
The + and * quantifiers are greedy: they try to match the input string as much as possible. This can be particularly pernicious. Consider a naïve use of the “zero or more non-newline characters” pattern of ...