Learn R Programming

PTXQC (version 1.0.4)

delLCS: Removes the longest common suffix (LCS) from a vector of strings.

Description

Removes the longest common suffix (LCS) from a vector of strings.

Usage

delLCS(x)

Arguments

x

Vector of strings with common suffix

Value

Shortened vector of strings

Examples

Run this code
# NOT RUN {
delLCS(c("TK12345_H1"))                     ## ""
delLCS(c("TK12345_H1", "TK12345_H2"))       ## "TK12345_H1" "TK12345_H2" 
delLCS(c("TK12345_H1", "TK12!45_H1"))       ## "TK123"    "TK12!" 
 
# }

Run the code above in your browser using DataLab