欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js截取指定字符前面或后面的内容

程序员文章站 2022-06-04 18:46:43
function getCaption(obj,state) { var index=obj.lastIndexOf("\-"); if(state==0){ obj=obj.substring(0,index); }else { obj=obj.substring(index+1,obj.leng ......
function getcaption(obj,state) {
var index=obj.lastindexof("\-");
if(state==0){
obj=obj.substring(0,index);
}else {
obj=obj.substring(index+1,obj.length);
}
return obj;
}
var data = 'aaa-bbb'
//截取符号前面部分
getcaption(data,0) //输出aaa
//截取符号后面部分
getcaption(data,1) //输出bbb

原文链接:https://blog.csdn.net/caiyongshengcsdn/article/details/88420416