JS文件名和路径截取分割
【摘要】 常用方法有两种
以/Users/lz/project/test.txt为例分别介绍一下
方法一、
fullPath = '/Users/lz/project/test.txt';pos = fullPath.lastIndexOf('/');fileName = fullPath.substr(pos+1);console.log(fileName);filePath ...
常用方法有两种
以/Users/lz/project/test.txt为例分别介绍一下
方法一、
-
fullPath = '/Users/lz/project/test.txt';
-
pos = fullPath.lastIndexOf('/');
-
fileName = fullPath.substr(pos+1);
-
console.log(fileName);
-
filePath = fullPath.substr(0,pos);
-
console.log(filePath);
但是这种方法有一个缺点是,如果遇到windows路径字符串就会一脸蒙圈,需要区分平台类型采取不同的编码策略,比如:
-
// windows平台路径
-
fullPath = 'C:\\project\\test.txt';
-
pos = fullPath.lastIndexOf('\\');
-
fileName = fullPath.substr(pos+1);
-
console.log(fileName);
-
filePath = fullPath.substr(0,pos);
-
console.log(filePath);
这样处理的话就需要知道平台类型,有没有可以不需要判断平台类型的方法呢?答案是有的。我们在只需要在操作之前就行格式化处理。
-
// 自己声明一个replaceAll方法
-
String.prototype.replaceAll = function(s1, s2) {
-
return this.replace(new RegExp(s1, "gm"), s2);
-
}
-
-
fullPath = '/Users/lz/project/test.txt';
-
fileName = 'test.txt';
-
fullPath = fullPath.replaceAll('/', '\\');
-
console.log(fullPath);
-
pos = fullPath.lastIndexOf('\\');
-
fileName = fullPath.substr(pos+1);
-
console.log(fileName);
-
filePath = fullPath.substr(0,pos);
-
console.log(filePath);
方法二、
如果你已经知道文件名,那就更好办了。
-
fullPathMac = '/Users/lz/project/test.txt';
-
fullPathWin = 'C:\\project\\test.txt';
-
fileName = 'test.txt';
-
filePath = fullPathMac.replace(fileName, '');
-
console.log(filePath);
-
filePath = fullPathWin.replace(fileName, '');
-
console.log(filePath);
文章来源: liuzhen.blog.csdn.net,作者:Data-Mining,版权归原作者所有,如需转载,请联系作者。
原文链接:liuzhen.blog.csdn.net/article/details/106005657
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)