Is there documentation that lists the differences in interpreters for embedded perl and regular perl (5.8.8)?
In one of my scripts I'm using a regex pattern match with the case-insensitive option, 'i'. This example:
Code: Select all
if ($var =~ /name/i)Code: Select all
nAmECode: Select all
$varThanks