Re: [htmltmpl] regex compilation
Brought to you by:
samtregar
From: Timm M. <tm...@ag...> - 2004-02-24 14:09:32
|
At 02:35 PM 2/24/04 +1100, Mathew Robertson wrote: >Hi H::T users, > >Just a little while ago, I released a 'H::T filters module'. One >suggestion was that I use qr// to pre-compile the regular expressions. > >Has this technique been investigated for use in H::T ? Likewise has the >use of 'o' modifier (as in s///o) been considered? qr// would require perl 5.6.0. /o is basically deprecated in favor of qr//. See also: http://www.perlmonks.org/index.pl?node_id=269035 |