隐藏

去除字符串中的空格、回车、换行符、制表符

发布:2015/3/11 12:42:05作者:管理员 来源:本站 浏览次数:1600

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script>
        function Trim(sText) {
            //return sText.replace(new RegExp("(^[\\s]*)|([\\s]*$)", "g"), "");

            return sText.replace(new RegExp("(\\s*|\t|\r|\n)", "g"), "");//去除字符串中的空格、回车、换行符、制表符       

        }

        function gltxt()
        {
            sss.value = Trim(sss.value);
            alert(sss.value);
        }
    </script>
</head>
<body>
    <textarea id="sss" style="width:300px; height:300px;"></textarea><input type="button" id="btn" value="过滤" onclick="gltxt();"/>
</body>
</html>