I need a regular expression for the following data:
All digits, all letters, or combination of digits and letters including special characters allowed:
@ . – ‘ ? , ( ) : ; ! * $ _ = + ^ & #
and French Unicode Accent Characters.
Please help. I am using the following regular expression, which works fine for other characters but it somehow allows forward slash(/)
.
VALIDATOR_STRING = "^[A-Za-z0-9éÉèÈçÇâÂêÊôÔ@.'#,-?:;!*$_=+^&()]+$";