Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: Conditionally executing different code based on Perl Version

by JavaFan (Canon)
on Feb 22, 2012 at 08:42 UTC ( [id://955475]=note: print w/replies, xml ) Need Help??


in reply to Re: Conditionally executing different code based on Perl Version
in thread Conditionally executing different code based on Perl Version

Note that none of your suggestions actually works for the OP. He cannot use use re '/d'; in code that's compiled under 5.12 or earlier, and since its effect is scope based, putting it inside an eval isn't going to help either, as an eval creates its own scope.

What may work is:

require re; re->import('/d') if $] >= 5.014;
but I have not tested this.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://955475]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (4)
As of 2024-04-20 15:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found