TrimSplit {bfw} | R Documentation |
Trim Split
Description
Extends strsplit by trimming and unlisting string
Usage
TrimSplit(
x,
sep = ",",
fixed = FALSE,
perl = FALSE,
useBytes = FALSE,
rm.empty = TRUE
)
Arguments
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 |
Details
Examples
TrimSplit("Data 1, Data2, Data3")
# [1] "Data 1" "Data2" "Data3"
[Package bfw version 0.4.2 Index]