本文介绍了从字符串中删除所有非小写字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我理解给定字符串str
I understand that given a string str
str.replace(/\s/g,'');
将删除字符串中的所有空格。
will remove all spaces in a string.
如何从字符串中删除所有非小写字母的字符?
How can I remove all characters that are not lower case letters from the string?
推荐答案
你可以:
str.replace( /[^a-z]/g, '' );
这篇关于从字符串中删除所有非小写字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!