Usuń cały znak, który nie jest A-B w ciągu JS

const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, " "));
Famous Fowl