String validation ..
I want to validate a string contains only the following characters :
- A-Z
- 0-9
- "/"
- "-"
What's the best way to achieve this. I have tried to use a REGEXP but this is returning valid if any of the characters are valid, not if all of the characters are valid.