欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前端如何去除字符串中的所有空格?

程序员文章站 2022-07-07 23:48:09
前端如何去除字符串中的所有空格?

前端如何去除字符串中的所有空格?

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>去除字符串中的所有空格</title>
<script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<script>
function Trim(str) {
    var result;
    result = str.replace(/(^\s+)|(\s+$)/g, "");
    result = result.replace(/\s/g, "");
    return result;
}
var aa="我爱    我家,我爱          我的  祖国。您好,我叫  祖国。"
document.write(aa+"<br/>");
document.write("<br/>去除字符串中的所有空格: "+Trim(aa));
</script>
</body>
</html>

前端如何去除字符串中的所有空格?