Does the 'o' modifier for Perl regular expressions still provide any benefit? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:40:23Zhttp://stackoverflow.com/feeds/question/550258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/550258/does-the-o-modifier-for-perl-regular-expressions-still-provide-any-benefit7Does the 'o' modifier for Perl regular expressions still provide any benefit?Jonathan Leffler2009-02-15T03:30:22Z2009-02-19T08:43:06Z
<p>It used to be considered beneficial to include the 'o' modifier at the end of Perl regular expressions. The current <a href="http://perldoc.perl.org/" rel="nofollow">Perl documentation</a> does not even seem to list it, certainly not at the <a href="http://perldoc.perl.org/perlre.html#Modifiers" rel="nofollow">modifiers section of perlre</a>.</p>
<p>Does it provide any benefit now?</p>
<p>It <em>is</em> still accepted, for reasons of backwards compatibility if nothing else.</p>
<p><hr></p>
<p>As noted by J A Faucett and brian d foy, the 'o' modifier is still documented, if you find the right places to look (one of which is not the <code>perlre</code> documentation). It is mentioned in the <a href="http://perldoc.perl.org/perlop.html#Regexp-Quote-Like-Operators" rel="nofollow">perlop</a> pages. It is also found in the <a href="http://perldoc.perl.org/perlreref.html" rel="nofollow">perlreref</a> pages.</p>
<p>As noted by Alan M in the accepted answer, the better modern technique is usually to use the qr// (quoted regex) operator.</p>
http://stackoverflow.com/questions/550258/does-the-o-modifier-for-perl-regular-expressions-still-provide-any-benefit/550313#5503132Answer by dp for Does the 'o' modifier for Perl regular expressions still provide any benefit?dp2009-02-15T04:12:37Z2009-02-15T04:12:37Z<p>This is an optimization in the case that the regex includes a variable reference. It indicates that the regex does not change even though it has a variable within it. This allows for optimizations that would not be possible otherwise.</p>
http://stackoverflow.com/questions/550258/does-the-o-modifier-for-perl-regular-expressions-still-provide-any-benefit/550333#55033317Answer by Alan Moore for Does the 'o' modifier for Perl regular expressions still provide any benefit?Alan Moore2009-02-15T04:40:54Z2009-02-19T08:43:06Z<p>I'm sure it's still supported, but it's pretty much obsolete. If you want the regex to be compiled only once, you're better off using a regex object, like so:</p>
<pre><code>my $reg = qr/foo$bar/;
</code></pre>
<p>The interpolation of <code>$bar</code> is done when the variable is initialized, so you will always be using the cached, compiled regex from then on within the enclosing scope. But sometimes you <em>want</em> the regex to be recompiled, because you want it to use the variable's new value. Here's the example Friedl used in <a href="http://rads.stackoverflow.com/amzn/click/0596528124" rel="nofollow">The Book</a>:</p>
<pre><code>sub CheckLogfileForToday()
{
my $today = (qw<Sun Mon Tue Wed Thu Fri Sat>)[(localtime)[6]];
my $today_regex = qr/^$today:/i; # compiles once per function call
while (<LOGFILE>) {
if ($_ =~ $today_regex) {
...
}
}
}
</code></pre>
<p>Within the scope of the function, the value of $today_regex stays the same. But the next time the function is called, the regex will be recompiled with the new value of <code>$today</code>. If he had just used </p>
<pre><code>if ($_ =~ m/^$today:/io)
</code></pre>
<p>...the regex would never be updated. So, with the object form you have the efficiency of /o without sacrificing flexibility.</p>
http://stackoverflow.com/questions/550258/does-the-o-modifier-for-perl-regular-expressions-still-provide-any-benefit/551569#5515698Answer by brian d foy for Does the 'o' modifier for Perl regular expressions still provide any benefit?brian d foy2009-02-15T20:52:59Z2009-02-15T20:52:59Z<p>The <code>/o</code> modifier is in the <a href="http://perldoc.perl.org/perlop.html" rel="nofollow">perlop</a> documentation instead of the <a href="http://perldoc.perl.org/perlop.html" rel="nofollow">perlre</a> documentation since it is a quote-like modifier rather than a regex modifier. That has always seemed odd to me, but that's how it is.</p>
<p>Before Perl 5.6, Perl would recompile the regex even if the variable had not changed. You don't need to do that anymore. You could use /o to compile the regex once despite further changes to the variable, but as the other answers noted, <code>qr//</code> is better for that.</p>