Reputation: 28907
I have lots of files in a directory dir
, with the following format
[xyz][sequence of numbers or letters]_[single number]_[more stuff that does not matter].csv
for example, xyz39289_3_8932jda.csv
I would like to write a function that returns all the first portions of all the file names in that directory. By first portion, I mean the [xyz][sequence of numbers]
portion. So, in the example above, this would include the xyz39289
. As such, the function would ultimately return a list such as
[xyz39289, xyz9382, xyz03319927, etc]
How can I do this in R? In Java, I would do the following:
File[] files = new File(dir).listFiles();
ArrayList<String> output = new ArrayList<String>();
for(int i = 0; i < files.length; i++) {
output.add(files[i].getName().substring(0,files[i].getName().indexOf("_"));
}
Upvotes: 0
Views: 396
Reputation: 13363
After you get your list of files with list.files
(and possibly extract just the files that you want that begin with xyz
, I'd use sub
.
files <- list.files(dir)
files <- files[grep("^xyz",files, perl = TRUE)]
filepart <- sub("^(xyz[^_]*)_.*$","\\1",files, perl = TRUE)
There's also a regexpr
method that I'm not too certain with. Something like
files <- list.files(dir)
matchdat <- regexpr("^xyz.*?(?=_)",files, perl = TRUE)
filepart <- regmatches(test,matchdat)
Upvotes: 0
Reputation: 1437
here's another version. list all files
myfiles <- list.files(path="./dir")
split each file name on "_" and keep the first part
myfiles.pre <- sapply(myfiles, function(x) strsplit(x,"_",fixed=T)[[1]][1])
Upvotes: 0
Reputation: 57686
Might be easiest to delete everything after the first _
.
sub("_.*$", "", files)
Upvotes: 2