Hello Monks-
I am using the following substitution expression in my program
`perl -pi.bak -e "s|$find|$replace|g" $_`;
where $find='\\d{2}-\\d{2}-\\d{4}'
When i use \\d{2}-\\d{2}-\\d{4} instead of $find in the some statement in backticks it works as expected but when i use $find it does not.
I tried the e modifier but it still does not work.
Thanks for your help in advance!
-S