powered by
Used to split strings like "Abc8" into "Abc" and "8".
NoSep(data, charfirst = TRUE)
The vector of strings to be split.
Is the string constructed with characters at the start or numbers? Defaults to TRUE.
TRUE
A data.frame with two columns, .var and .time_1.
data.frame
.var
.time_1
base::strsplit()
# NOT RUN { x <- paste0("Var", LETTERS[1:3], 1:3) splitstackshape:::NoSep(x) y <- paste0(1:3, "Var", LETTERS[1:3]) splitstackshape:::NoSep(y, charfirst = FALSE) # }
Run the code above in your browser using DataLab