js将字符串内空格去除的方法
Posted 整理是一切的开始
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js将字符串内空格去除的方法相关的知识,希望对你有一定的参考价值。
function noSpace(x){ if(x.match(/s*/g)){ return x.replace(/s*/g,""); }else{ return x; } }
---
function noSpace(x){ return x.replace(/s/g, ‘‘); }
---
function noSpace(x){ var result = "" for(var index = 0; index < x.length; index++){ if(x[index] !== " "){ result += x[index]; } } return result; }
---
function noSpace(x){ return x.replace(/ /g,‘‘) }
---
function noSpace(x){ return x.split("") .map(function(val){ return val == " "?"":val }) .join(""); }
以上是关于js将字符串内空格去除的方法的主要内容,如果未能解决你的问题,请参考以下文章