码迷,mamicode.com
首页 > 其他好文 > 详细

字符串截取(某个指定字符)

时间:2020-07-06 16:05:09      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:cti   ret   class   string   hang   last   指定   字符   字符串截取   

function getCaption(obj){
    var index=obj.lastIndexOf("\-");
    obj=obj.substring(index+1,obj.length);
    //  console.log(obj);
    return obj;
}
var str="字符串截取(某个指定字符之后)-zhangchenxiao";
getCaption(str);

打印:zhangchenxiao

字符串截取(某个指定字符)

标签:cti   ret   class   string   hang   last   指定   字符   字符串截取   

原文地址:https://www.cnblogs.com/xiaoxiao2017/p/13254794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!