I want to find whether a string contains any of the special characters like !,@,#,$,%,^,&,*,(,)....etc.
How can I do that without looping thorugh all the characters in the string?
|
I want to find whether a string contains any of the special characters like !,@,#,$,%,^,&,*,(,)....etc. How can I do that without looping thorugh all the characters in the string?
| |||
|
feedback
|
| |||||
feedback
|
|
Use
Of course that will loop internally - but at least you don't have to do it in your code. | |||||
feedback
|
|
Instead of checking if a string contains "special characters" it is often better to check that all the characters in the string are "ordinary" characters, in other words use a whitelist instead of a blacklist. The reason is that there are a lot of characters that could be considered "special characters" and if you try to list them all you are bound to miss one. So instead of doing what you asked it might be better to check for example that your string matches the regex | |||||||||||
feedback
|
|
Using PHP, you can try:
This will return TRUE if the string contains anything other than a letter or number. Hope this helps. | |||||||||||||||
feedback
|
|
Also...
| |||||
feedback
|