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: C
On Thursday 02 March 2006 13:30, maillists wrote:
> Hi,
>
> I'm trying to filter quotes out of a web form and replace them with
> "
>
> $Values->{text_field} =~ s/"/"/;
> return;
The above would replace the first " with " on the fi
On 3/2/06, maillists <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm trying to filter quotes out of a web form and replace them with
> "
>
> $Values->{text_field} =~ s/"/"/;
> return;
>
> However, This does not seem to work. Is this
Hi,
I'm trying to filter quotes out of a web form and replace them with
"
$Values->{text_field} =~ s/"/"/;
return;
However, This does not seem to work. Is this right?
Also, I would like to replace the single quote '
Thanks
Rick
--
To unsubscribe, e