Suppose the variable $var has the value abc123abc . What is the value of $var after the following substitution? $var=~ s/(\d+)/ $1*2 /e ;
“abc”
It will produce error
“ABC123ABC”
”abc246abc”