removeext: Remove Common Extension from File Names

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Finds and removes any common extension from a vector of file names.

Usage

1
removeExt(x, sep=".")

Arguments

x

character vector

sep

character string that separates the body of each character string from the extension.

Details

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.

Value

A character vector of the same length as x in which any common extension has been stripped off.

Author(s)

Gordon Smyth

See Also

An overview of LIMMA functions for reading data is given in 03.ReadingData.

Examples

1
2
3
4
5
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=" - ")

Example output

[1] "slide1" "slide2" "slide3"
[1] "Harry"    "Hermione"

limma documentation built on Nov. 8, 2020, 8:28 p.m.