View source: R/basic_functions.R
TrimSplit | R Documentation |
Extends strsplit by trimming and unlisting string
TrimSplit( x, sep = ",", fixed = FALSE, perl = FALSE, useBytes = FALSE, rm.empty = TRUE )
x |
string |
sep |
symbol to separate data (e.g., comma-delimited), Default: ',' |
fixed |
logical, if TRUE match split exactly, otherwise use regular expressions. Has priority over perl, Default: FALSE |
perl |
logical, indicating whether or not to use Perl-compatible regexps, Default: FALSE |
useBytes |
logical, if TRUE the matching is done byte-by-byte rather than character-by-character, Default: FALSE |
rm.empty |
logical. indicating whether or not to remove empty elements, Default: TRUE |
strsplit
TrimSplit("Data 1, Data2, Data3") # [1] "Data 1" "Data2" "Data3"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.