saber 酱的抱枕

Fly me to the moon

05/27
2015
学习

js使用正则表达式删除换行和空格

js使用正则表达式删除换行和空格的示例代码:

string.replace(/^\n+|\n+$/g,"");//删除换行符
string.replace((/\ +/g,"");//删除空格

js使用正则表达式删除换行和空格