hi all, 
maybe this is a stupid question but : 
i run perl 5.8.8 and i need to replace any underscore preceded by a number, with "0".
running :
 $var =~s /(\d)_/$10/g; moreover, as runing perl5.8, i can't do
$var=~s/(?<n1>\d)\_/$+{n1}0/g;any idea ?
thanks in advance