Re: Filter Quotes

2006-03-05 Thread David Moreno Garza
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

Re: Filter Quotes

2006-03-03 Thread Beau E. Cox
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

Re: Filter Quotes

2006-03-02 Thread Chas Owens
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

Filter Quotes

2006-03-02 Thread maillists
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