• js入门5-字符的查询与过滤 加上使用正则表达式


    <h2>5.String对象:字符的查找与过滤</h2>
                <input type="text" id="txtString"/><br/>
                <input type="button" value="过滤特殊字符(js)" onclick="searchStringAndReplace();"/>
        //查找并替换文本框中录入的自字符串js为*
    function searchStringAndReplace(){
        var str = document.getElementById("txtString").value;
        var index = str.indexOf("js",0);
        while(index>-1){
            str = str.replace("js","*");
            index = str.indexOf("js",index+1);
        }
        document.getElementById("txtString").value = str;
    }

        <input type="button" value="查找字符并过滤(使用正则表达式)" onclick="stringByRegex();"/>
     //使用正则表达式操作文本
    function stringByRegex(){
        var str = document.getElementById("txtString").value;
        var result = str.match(/js/gi);
        document.getElementById("txtString").value = str.replace(/js/gi,"*");
        alert("共替换了"+result.length+"处");
    }

  • 相关阅读:
    6月15日学习日志
    6月14日学习日志
    6月13日学习日志
    6月12日学习日志
    给建民哥的意见
    6月10日学习日志
    6月9日学习日志
    6月8日学习日志
    梦断代码读书笔记3
    第二次冲刺(六)
  • 原文地址:https://www.cnblogs.com/ls00/p/6958707.html
Copyright © 2020-2023  润新知