I have the following code to find a quote in a string and replace it with a slashquote.
ie " goes to \"
How do I get it to do more than one substitution in the string.
$_ = $$Rules{$yes}{rule_desc};
s/"/\\"/;
$$Rules{$yes}{rule_desc} = $_;
newbie...
