Skip to content
Advertisement

JavaScript – Remove strange characters from string

How do I remove these strange characters from a string?

I have been trying with regex, but with no success.

Before Remove:

JavaScript

After Remove:

JavaScript

I already tried:

JavaScript

Advertisement

Answer

JavaScript

Regex explanation:

[^] – group of NEGATIVE selection (whatever is in this group WILL NOT be selected)
w – Letter
d – Digit
s – Whitespace
. – Dot (Does not need to be escaped inside a group [])
& – Ampersand
, – Comma
g – global flag (matching all results and not just the first result)

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement