Link to home
Start Free TrialLog in
Avatar of n_chai
n_chai

asked on

strip off "/" from a string

Hi,

Is they a way to strip of "/" from a string. eg.

$String = "1234567/999"
...code to strip "/"
$String = "1234567999"
ASKER CERTIFIED SOLUTION
Avatar of andreif
andreif
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ozo
#or
$String =~ tr(/)()d
Avatar of n_chai
n_chai

ASKER

Thanks.