The English module allows you to replace the internal variables of Perl that mostly use special characters to use variable names that look more like English words.

The recommended way is to write:

use English qw( -no_match_vars );

That will avoid the inclusion of some of the regex-related variables that slowed down Perl in version 5.18 and before.

Examples