$variable =~ s///; #For example the following my $variable = "Blue Car"; print $variable."\n"; $variable =~ s/Blue/Red/; print $variable."\n";