Hi
My Requirement is ---Only the following characters are allowed in integer fields:
0 - 9, ( ) + <space> , - / \
and the regex that I have used is "^\\+?[0-9\\(?\\)\\s\\-\\,\\/]*" which works fine but if I add "\\\\" into it for validation of backslash ,invalid character error is thrown.