>I have this _expression_ and it works great.
>REReplaceNoCase(clean, "[^a-z0-9.!?'/\- ]", "", "all")
>Now I need to add a " to it with out it causing an error. How do I do that?
>

Couldn't you just do this instead?

REReplaceNoCase(clean, '[^a-z0-9.!?'/\-" ]', '', 'all')

(I just changed your surrounding double quotes to single quotes, which is
perfectly valid, and then added the double quote to your expressoin in the
[].

Regards,
Dave.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to