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:
const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, ""));
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…