I need a regex expression which should accept any character including the underscore character. For this the following condition works just fine: [A-zÀ-ÿ\d_].
The probem here is that the following characters are also included: \ [ ] ^.
Is there a way to remove/negate them from the [A-zÀ-ÿ\d_] set?