in reply to Re: Re: Re: String Substitution Operatorin thread String Substitution Operator
my $str = "14/01/52"; $str =~ s/\//-/g; # replace / with - print "$str\n"; [download]