Reputation: 23
I want Jquery regex for validating alphanumeric, spaces and following characters [],./\
Can anyone please help me quickly, I do not know much about regex escaping.
Upvotes: 0
Views: 31
Reputation: 5962
Here is your regex.
^[a-zA-Z0-9.,[\]/\\ ]+$
Validate it here.
Upvotes: 1