http://qs321.pair.com?node_id=417162


in reply to Re: RegEx for users who dont know RegEx
in thread RegEx for users who dont know RegEx

Why strip out the unsafe characters instead of escaping them, as I did below? Using your approach to search for "can't" will fail, for example.
  • Comment on Re^2: RegEx for users who dont know RegEx

Replies are listed 'Best First'.
Re^3: RegEx for users who dont know RegEx
by The Mad Hatter (Priest) on Dec 23, 2004 at 17:39 UTC
    *shrugs* Stripping out unsafe characters just seems like a better idea; you know exactly what you're left with. If you want to allow single ticks or other characters, modifying the regex of allowed chars is easy. The code above is just an example, not a final product.