I am trying to come up with a valid pattern for an HTML form. I would like to allow all upper & lower case letters, spaces, numbers, and the symbols / \ @ # $ % & .
I've tried a couple different formats but I haven't had any luck.
So far I have:
<input type="text" name="Address" size="25" pattern="[a-zA-Z0-9 ]{2,35}]" title="Title" required/>