Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi all,
I need some help with QRegExp.
I need to find the character ' but I need to omit '
I try the following QRegExp, but it does not work.
@ QRegExp("[^\]'") @
Try @ QRegExp("(^)|[^\\\\]"); @
)|[^\\\\]
Matches * at beginning of line OR * not preceded by ** Because of escaping, all \s are doubled to \
* at beginning of line OR *
Thanks mlong,
It helps a lot. :)
Many thanks.
No problem! Be sure and retitle the thread as [Solved]. Thanks!