Description Usage Arguments Details Value Examples
View source: R/strsplit_on_multiple.R
Split strings on multiple delimeters
1 | strsplit_on_multiple(x, separator)
|
x |
string or vector of strings |
separator |
single or vector of separator delimeters |
does not support regex matching
a list of vectors with split strings
1 2 3 4 | strings_to_split<-c('abc def.gh', "def.kl abc 9")
separation_pattern<-c(" ", "c")
strsplit_on_multiple(x = strings_to_split,
separation_pattern)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.