View source: R/select_by_file_extension.R
select_by_file_extension | R Documentation |
Sometimes it makes sense to apply a function to several files in a folder, but only to those of a particular file type. This function can selects all elements in a vector of strings that end in a particular way, e.g. on a common file extension.
select_by_file_extension(strings, file_extension)
strings |
vector of character strings for elements to be extracted from. |
file_extension |
character string specifying the extension of the file type to be selected. This can also be any other trailing string that marks all vector elements to be selected. |
subset of the strings vector that only contains the elements that end on file_extension.
Eike Luedeling
select_by_file_extension(c("Temp1.csv","Temp1.xls","Temp2.csv","Temp2.xls"),"csv")
select_by_file_extension(c("red car","blue car","yellow duck"), "car")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.