I tried the code below
str = 'Arc's 弧'
str.replace(/[^a-z\d\s]+/gi,'');
The result show
Arc039s
Expected result
Arc's
What's wrong with the code, and is that the right way for removing chinese character including punctuation?
Thanks in advance.