So, you think you know a lot about Perl Regular Expressions? If you finished Chapter 1, then you certainly do. But, there are more REs that provide you with powerful techniques to parse data.
This chapter covered REs that will give you a great understanding of how useful Perl pattern matching is. Each section in this chapter will also start with a brief description why you should learn that technique.
Make use of the Smartmatch operator
This operator provides a more powerful technique to perform matching.
The Smartmatch operator, ~~, will ...