标签: javascript string
我理解给定字符串str
str.replace(/\s/g,'');
将删除字符串中的所有空格。
如何从字符串中删除所有非小写字母的字符?
答案 0 :(得分:14)
你可以:
str.replace( /[^a-z]/g, '' );