zoukankan      html  css  js  c++  java
  • js中对String去空格

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <title>js中对String去空格</title>
        <style type="text/css">
        body {
            margin: 0;
            padding: 0;
        }
        </style>
    </head>
    
    <body>
        <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
        <script type="text/javascript">
        $(function() {
            var myAction = {};
            $.extend(myAction, {
                test: function() {
                    var str = '  x u tong bao  ';
                    var temp = str.replace(/s+/g, ''); //去除所有空格
                    console.log(':' + temp + '.');
                    var temp = str.replace(/^s+|s+$/g, ''); //去除两头空格
                    console.log(':' + temp + '.');
                    var temp = str.replace(/^s+/, ''); //去除左空格
                    console.log(':' + temp + '.');
                    var temp = str.replace(/(s+$)/g, ''); //去除右空格
                    console.log(':' + temp + '.');
    
                    var temp = $.trim(str); //使用jQuery 去除两头空格
                    console.log(':' + temp + '.');
                }
            });
    
            var init = function() {
                myAction.test();
            }();
        })
        </script>
    </body>
    
    </html>
  • 相关阅读:
    Python保留最后N个元素
    STL算法
    STL迭代器
    STL容器
    C++总结1
    牛客剑指Offer2
    Vue第一天
    UML
    Java继承和组合代码
    Java15后的sealed阻止继承滥用
  • 原文地址:https://www.cnblogs.com/xutongbao/p/9924792.html
Copyright © 2011-2022 走看看