Vijay Gupta
Vijay Gupta

Reputation: 23

Need Jquery Regex for validating alphanumeric space and following characters [],./\

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

Answers (1)

Amit Kumar
Amit Kumar

Reputation: 5962

Here is your regex.

^[a-zA-Z0-9.,[\]/\\ ]+$

Validate it here.

Upvotes: 1

Related Questions