Learn R Programming

PTXQC (version 1.1.2)

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)

Value

Shortened vector of strings

Arguments

x

Vector of strings with common suffix

Examples

Run this code
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