On 18:30 Thu 02 Mar 2006, maillists wrote:
>     $Values->{text_field} =~ s/"/"/;

Try adding a `g' on the end of the regexp:

 $Values->{text_field} =~ s/"/"/g;

Cheers,

-- 
David Moreno Garza <[EMAIL PROTECTED]>   |  http://www.damog.net/
                   <[EMAIL PROTECTED]>  |          GPG: C671257D
 Save the planet, it is the only one with chocolate.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to