in reply to Re: Re: Re: String Substitution Operator
in thread String Substitution Operator

Simple.
my $str = "14/01/52"; $str =~ s/\//-/g; # replace / with - print "$str\n";