美文网首页
js切割字符串。重复内容,从后往前找

js切割字符串。重复内容,从后往前找

作者: 发光驴子 | 来源:发表于2017-07-08 16:43 被阅读0次

    /content要切割的内容,EquesValue要切割相同的值,从后向前找/

    function incisionEquesValue(content,EquesValue){
    
            for (var i=1;i<content.length;i++)
                {
                    
                    if((content.substr(content.length-i)).substring(0,1)==EquesValue){
                    
                     
                        return content.substr(content.length-i);
                    }
                
                }
                        
        
    }

    相关文章

      网友评论

          本文标题:js切割字符串。重复内容,从后往前找

          本文链接:https://www.haomeiwen.com/subject/vacjhxtx.html