获取另一个字符串中最后一次出现的字符串

这个问题在这里已经有了答案:

  • endsWith在JavaScript 29答案

  • 就像是

    var check = "project",
        url = "/home/doc/some-user-project/project";
    
    if (url.substr(-check.length) == check){
      // it ends with it..
    }
    

    尝试这个

    <script>
    var url = "/home/doc/some-user-project/project";
    url.match(/project$/);
    </script>
    

    响应是一个包含项目的数组,如果responde由于未找到而为'null'

    链接地址: http://www.djcxy.com/p/83891.html

    上一篇: Get the last occurrence of string within another string

    下一篇: Extract sub string from last in a string JS