Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: 8.123 POSIXChapter 8
Standard Modules
Next: 8.125 Safe
 

8.124 re

Pragma that lets you alter the behavior of regular expressions. Permits the following alterations:

use re 'debug'

Causes Perl to produce debugging messages when compiling and at run time when using regular expressions. See the re manpage and the section on "Debugging regular expressions" in the perldebug manpage for details.

use re 'eval'

Permits a regular expression to contain (?{...}) zero-width assertion even if the regular expression contains variable interpolation, which normally isn't permitted for security reasons. The pragma is ignored if the regular expression comes from tainted data.

use re 'taint'

When a tainted string is the target of a regular expression, causes the regular expression memories (or the values returned by the m// operator in list context) to be tainted.


Previous: 8.123 POSIXPerl in a NutshellNext: 8.125 Safe
8.123 POSIXBook Index8.125 Safe



Banner.Novgorod.Ru