Regex return file name, remove path and file extension

删除回忆录丶 提交于 2020-01-09 04:46:07

问题


I have a data.frame that contains a text column of file names. I would like to return the file name without the path or the file extension. Typically, my file names have been numbered, but they don't have to be. For example:

df<-data.frame(data=c("a","b"),fileNames=c("C:/a/bb/ccc/NAME1.ext","C:/a/bb/ccc/d D2/name2.ext"))

I would like to return the equivalent of

df<-data.frame(data=c("a","b"),fileNames=c("NAME","name"))

but I cannot figure out the slick regular expression to do this with gsub. For example, I can get rid of the extension with (provided the file name ends with a number):

gsub('([0-9]).ext','',df[,"fileNames"])

Though I've been trying various patterns (by reading the regex help files and similar solutions on this site), I can't get a regex to return the text between the last "/" and the first ".". Any thoughts or forwards to similar questions are much appreciated!

The best I have gotten is:

 gsub('*[[:graph:]_]/|*[[:graph:]_].ext','',df[,"fileNames"])

But this 1) doesn't get rid of all the leading path characters and 2) is dependent on a specific file extension.


回答1:


Perhaps this will get you closer to your solution:

library(tools)
basename(file_path_sans_ext(df$fileNames))
# [1] "NAME1" "name2"

The file_path_sans_ext function is from the "tools" package (which I believe usually comes with R), and that will extract the path up to (but not including) the extension. The basename function will then get rid of your path information.

Or, to take from file_path_sans_ext and modify it a bit, you can try:

sub("(.*\\/)([^.]+)(\\.[[:alnum:]]+$)", "\\2", df$fileNames)
# [1] "NAME1" "name2"

Here, I've "captured" all three parts of the "fileNames" variables, so if you wanted just the file paths, you would change "\\2" to "\\1", and if you wanted just the file extensions, you would change it to "\\3".




回答2:


First of all, to get rid of the "leading path", you can use basename. To remove the extension, you can use sub similar to your description in your question:

filenames <- sub("\\.[[:alnum:]]+$", "", basename(as.character(df$fileNames)))

Note that you should use sub instead of gsub here, because the file extension can only occur once for each filename. Also, you should use \\. which matches a dot instead of . which matches any symbol. Finally, you should append $ to the pattern to make sure you are removing the extension only if it is at the end of the filename.

Edit: the function file_path_sans_ext suggested in Ananda Mahto's solution works via sub("([^.]+)\\.[[:alnum:]]+$", "\\1", x), i.e. instead of removing the extension as above, the non-extension part of the filename is retained. I can't see any specific advantages or disadvantages of both methods in the OP's case.



来源:https://stackoverflow.com/questions/15073753/regex-return-file-name-remove-path-and-file-extension

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!