js去空字符串

str为要去除空格的字符串:
去除所有空格:
str = str.replace(/\s+/g,"");
去除两头空格:
str = str.replace(/^\s+|\s+)/g, "");
去除所有空格:
str = str.replace(/\s+/g,"");
去除两头空格:
str = str.replace(/^\s+|\s+|^\s+/g,"");

pycharm快捷键
ctrl + home 光标移动到第一行

ctrl + end 光标移动到最后一行

ctrl + g 光标移动到指定行(弹出框指定行数)

你可能感兴趣的:(js去空字符串)