美文网首页
js 截取特殊字符前后的所有字符串

js 截取特殊字符前后的所有字符串

作者: friendshi洛初Udo邭 | 来源:发表于2021-01-18 09:52 被阅读0次

    截取/前的字符

    var index = pythonpath.lastIndexOf("/");

    Writepathexe = pythonpath.substring(0, index);

    截取/后的字符

    var index = pythonpath.lastIndexOf("/");

    str =str .substring(index+1,str.length);

    相关文章

      网友评论

          本文标题:js 截取特殊字符前后的所有字符串

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