tags:

views:

23

answers:

1

I want to add one condition 'except backslash' to /^[\x20-\x7E]{8,127}$/ how can I do?

+1  A: 

backslash is 0x5c, so

/^[\x20-\x5b\x5d-\x7e]{8,127}$/
S.Mark
oh, my! thank you