Is there a way to precompile a regex in Perl? I have one that I use many times in a program and it does not change between uses.
|
|
For literal (static) regexes there's nothing to do -- perl will only compile them once.
For regexes stored in variables you have a couple of options. You can use the
This is handy if you want to use a regex in multiple places or pass it to subroutines. If the regex pattern is in a string you can use the
It's usually better to not do that, though. Perl is smart enough to know that the variable hasn't changed and the regex doesn't need to be recompiled. Specifying |
||||||||
|
|
|
Simple: Check the qr// operator (documented in the perlop under Regexp Quote-Like Operators).
|
|||
|
|
