I want to remove all special characters except space from a string using javascript. For example, abc's test#s should output as abcs tests
Anybody please help me. Thanks in advance.
|
I want to remove all special characters except space from a string using javascript. For example, abc's test#s should output as abcs tests Anybody please help me. Thanks in advance. |
|||||
|
|
You should use the string replace function, with a single regex. Assuming by special characters, you mean anything that's not letter, here is a solution:
|
|||
|
|
|
I don't know JavaScript, but isn't it possible using regex? Something like |
||||
|
|
|
Whose special characters you want to remove from a string, prepare a list of them and then user javascript replace function to remove all special characters.
or you can run loop for a whole string and compare single single character with the ASCII code and regenerate a new string. |
|||||
|