How do I remove these strange characters from a string?
I have been trying with regex, but with no success.
Before Remove:
JavaScript
x
7
1
RegExr was created by gskinner.com, and is proudly hosted by Media Temple.
2
3
*ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ
4
هۣۗہہهۣۗہہهۣۗہہهۣۗہہهۣۗہہهۣۗہهۣۗہہهۣۗہہهۣۗہہهۣۗہہهۣۗہہهۣۗہ ╚═════ঔৣ͜͡➳༒ঔৣ͜͡➳══════╝ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗۗ ۗۗ
5
6
Edit the Expression & Text to see matches. Roll over matches or the expression for details. PCRE & JavaScript flavors of RegEx are supported. Validate your expression with Tests mode.
7
After Remove:
JavaScript
1
6
1
RegExr was created by gskinner.com, and is proudly hosted by Media Temple.
2
3
4
5
Edit the Expression & Text to see matches. Roll over matches or the expression for details. PCRE & JavaScript flavors of RegEx are supported. Validate your expression with Tests mode.
6
I already tried:
JavaScript
1
4
1
/[^\x00-\x7F]/gu
2
/([p{L}|p{N}|p{S}|p{M}p{P}])/gu
3
/[WD]/g
4
Advertisement
Answer
JavaScript
1
5
1
const dirty_string = 'your string';
2
3
const unwanted_chars_regex = /[^wds.&,]/g;
4
const clean_string = dirty_string.replace(unwanted_chars_regex, '');
5
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)