Remove Common Extension from File Names
Finds and removes any common extension from a vector of file names.
removeExt(x, sep=".")
x |
character vector |
sep |
character string that separates the body of each character string from the extension. |
This function is used for simplifying file names, or any vector of character strings, when the strings all finish with the same suffix or extension.
If the same extension is not shared by every element of x
, then it is not removed from any element.
Note that sep
is interpreted as a literal character string: it is not a regular expression.
A character vector of the same length as x
in which any common extension has been stripped off.
Gordon Smyth
An overview of LIMMA functions for reading data is given in 03.ReadingData.
x <- c("slide1.spot","slide2.spot","slide3.spot") removeExt(x) x <- c("Harry - a name from Harry Potter","Hermione - a name from Harry Potter") removeExt(x, sep=" - ")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.