zoukankan      html  css  js  c++  java
  • JS 获取一串路径中的文件名称

    1.带后缀名

    function getFileName(path){
            var pos1 = path.lastIndexOf('/');
            var pos2 = path.lastIndexOf('\');
            var pos  = Math.max(pos1, pos2)
            if( pos<0 )
                return path;
            else
                return path.substring(pos+1);
        }
    原文链接:https://blog.csdn.net/qaakd/article/details/108058545

    2.不带后缀名

     getFileName(path) {
          var pos1 = path.lastIndexOf('/')
          var pos2 = path.lastIndexOf('\')
          var pos = Math.max(pos1, pos2)
          if (pos < 0) {
            return path
          }
          else {
            let tempPath = path.substring(pos + 1);
            return tempPath.substring(0, tempPath.lastIndexOf("."));
          }
        }
  • 相关阅读:
    shell test条件判断
    shell 变量
    shell 流程结构
    shell 正则表达式
    shell脚本常用参数
    snmp 简单的网络管理协议
    linux
    nmap
    git 基础操作
    linux 下 svn 更新代码
  • 原文地址:https://www.cnblogs.com/maycpou/p/14830850.html
Copyright © 2011-2022 走看看