12-07-2010 07:22 AM
hello,
i use a regexp to format entries
for now i use [^\w] to detect when it is not a word but i would like not to detect back " <--" and del ?
regards
Tinnitus
12-07-2010 09:33 AM
Hi Tinnitus,
From your question it seems you are trying to ignore all word characters as well as backspace and delete characters.
You should be able to achieve this with the following regular expression: [^\w\x08\x7F]
\x08 and \x7F represent the ASCII code in hex format for backspace and delete respectively.
Hope this helps!