Hi all. i've been wanting to create a validation that user has to key in for e.g: 10/2009. i want it to have the number and the '/' char.
i tried "^\d+$" which is only for numbers.
".*[/].*" which is only for '/'
"^[0-9a-zA-Z]+$" which doesnt seem to work.
can anyone help me?