I have a string and I want to validate that string so that it should not contain certain characters like '/' '\' '&' ';' etc... How can I do that all at once?
|
|
You can solve this with regular expressions!
matching against the regex returns the string if it is ok, or null if its invalid! Explanation:
|
||||
|
|
|
I would use regular expressions. See this guide from Mozillla.org. This article does also give a good introduction to regular expressions in JavaScript. |
|||
|
|
|
Here is a good article on Javascript validation. Remember you will need to validate on the server side too. Javascript validation can easily be circumvented, so it should never be used for security reasons such as preventing SQL Injection or XSS attacks. |
||||
|
|
|
You can use the test method, with regular expressions:
|
|||
|
|
|
You could learn regular expressions, or (probably simpler if you only check for one character at a time) you could have a list of characters and then some kind of
So then:
|
||||
|
|
|
with regular expression |
|||
|
|
|
You can use regex. For example if your string matches:
then it is not valid. Look at: http://www.regular-expressions.info/javascriptexample.html |
|||
|
|
|
You could probably use a regular expression. |
|||
|
|
|
As the others have answered you can solve this with regexp but remember to also check the value server-side. There is no guarantee that the user has JavaScript activated. Never trust user input! |
|||
|
|
