$rec{'listprice'} =~ tr/0-9.//cd;
I believe this should do it but where can I put it. Perhaps in join_encode something to the effect of:
if('thisisthecorrectfield(listprice)'){
$tmp=~ tr/0-9.//cd;#remove all but digits
}
The question is how do I identify the correct field. What should the if statement look like? I'm afraid my perl knowledge is not sufficient to allow me to figure this out any help would be appreciated.
Mike
[This message has been edited by mike1 (edited June 06, 1999).]
I believe this should do it but where can I put it. Perhaps in join_encode something to the effect of:
if('thisisthecorrectfield(listprice)'){
$tmp=~ tr/0-9.//cd;#remove all but digits
}
The question is how do I identify the correct field. What should the if statement look like? I'm afraid my perl knowledge is not sufficient to allow me to figure this out any help would be appreciated.
Mike
[This message has been edited by mike1 (edited June 06, 1999).]

