in reply to Re: Resource allocation question
in thread Resource allocation question
Those regex's are only compiled once, whatever that means. I guess it means that the interpreter stores the info away somewhere to be readily available for use later.if ( $x =~ /#some regex/o ) { # or if ( $x =~ /#some constant regex/ ) {
|
|---|