RE: [PHP-GENERAL] Remove double quotes from string
[email protected] ("Liz Kimber")
| Newsgroups | php.general |
|---|---|
| Message-ID | <[email protected]> |
I havent been able to replicate your problem.. Originally you wanted to
change double quotes to nothing, in which case
$mytext=str_replace("\"","",$mytext); works OK for me..
> -----Original Message-----
> From: Spallek, Heiko [mailto:[email protected]]
> Sent: Tuesday, May 16, 2000 20:31
> To: '[email protected]'
> Cc: '[email protected]'
> Subject: RE: [PHP-GENERAL] Remove double quotes from string
>
>
> Hi Steff,
>
> > replace the string delimiting quotes (") by single quotes (')
> > and try the following modification of your statements:
> >
> > $quoteText = strtr($quoteText, '"', ' ');
> > $quoteText = str_replace('"', ' ', $quoteText);
> >
> > In general ' and " quotes have exactly the same meaning. But
> > be aware of the problems that could araise. Take notice of
> > the execution precedence of php, javascript/html and so on...
> Thanks a lot!
>
> When I use it, however, both translate the content of a input
> text box from
> an HTML form which contains
>
> "Nothing is ..."
>
> into
> \Nothing is ...\
>
> which I don't like. I need the string just plain without the '\'.
>
> Any idea?
>
> Heiko
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> To contact the list administrators, e-mail: [email protected]
>