In a textarea field, i want to allow only alphanumeric characters, -(hyphen),/(forward slash), .(dot) and space. I have gone through similar questions but one way or the other, my exact requirements seem to differ. So, below is the regex i've come up with after reading answers give by members:
/^[a-z0-9\-\/. ]+$/i
I've tested the regex and so far it seems to work but i want to double check. Please verify as to whether the above regex fulfills my requirements.