获取另一个字符串中最后一次出现的字符串
这个问题在这里已经有了答案:
就像是
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