Last 5 Pages Viewed: Special:ApiHelp » Special:ApiHelp » Special:RecentChangesLinked/20151012 Cod... » Mw:Special:MyLanguage/Manual:$wgPageLang... » Simple functions

Simple functions

From kogic.kr
Revision as of 13:29, 27 November 2018 by S (talk | contribs)

YalPak_Rtip

Split the elements of a character vector and select a element

Input

x <- "AAA@BBB"

Code

split_pick <- function(x , Div_str, Pick_num){

    return(as.character(as.data.table(strsplit(x, Div_str))[Pick_num])) 

}
split_pick(x, "@", 2)

Output

"BBB"