前端如何去除字符串中的所有空格?
程序员文章站
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>
上一篇: 垃圾回收机制代码实例讲解