zoukankan      html  css  js  c++  java
  • JavaScript中字符的替换

    JavaScript中,replace() 方法如果直接用str.replace("-","!"),只会替换第一个匹配的字符!我们可以采用如下方法实现替换匹配字符:
    1,循环替换
            for(j=0;j<strValue.length;j++)
            {
                strValue=strValue.replace('','')
            }

    2,
    <script type="text/javascript" language="javascript">
    //****************************************************************
    // Description: sInputString 为输入字符串,iType为类型,分别为
    // 0 - 去除前后空格; 1 - 去前导空格; 2 - 去尾部空格
    //****************************************************************
    function cTrim(sInputString,iType)
    {
        var sTmpStr = ''
        var i = -1

        if(iType == 0 || iType == 1)
        {
            while(sTmpStr == ' ')
            {
                ++i
                sTmpStr = sInputString.substr(i,1)
            }
            sInputString = sInputString.substring(i)
        }

        if(iType == 0 || iType == 2)
        {
            sTmpStr = ''
            i = sInputString.length
            while(sTmpStr == ' ')
            {
                --i
                sTmpStr = sInputString.substr(i,1)
            }
            sInputString = sInputString.substring(0,i+1)
        }
        return sInputString
        }     
    </script>

  • 相关阅读:
    问题解决-Plugin with id 'com.github.dcendents.android-maven' not found
    hadoop 04 一 HA高可用配置
    hadoop 03 一 Hadoop机架感知配置
    Windows平台安装配置Hadoop
    hadoop 02一 hadoop配置
    hadoop 01一 hadoop安装配置
    Centos7下载和安装教程
    mysql 命令行导出数据
    RabbitMQ 集群部署(linux-centos6.5)
    Spring 集成RabbitMq
  • 原文地址:https://www.cnblogs.com/MyFavorite/p/1275795.html
Copyright © 2011-2022 走看看