Hi
I am using the below to strip "-" from destination numbers, it does work
just fine "I replace - with nothing", what i need to do now is to strip all
characters except 0-9 * and #. Is there anyway to do it using the following
configuration part
if($rU =~ ".*-.*" )
{
$rU = $(rU{re.subst,/-//g});
}
Regards