data.frame
, split on that delimiter. A nice wrapper
to strsplit
, essentially - the primary bonus
is the automatic coersion to a data.frame
.split_to_df(x, sep, fixed = FALSE, perl = TRUE, useBytes = FALSE,
names = NULL)
regex
you wish
to split your strings on.TRUE
, we match sep
exactly; otherwise, we use regular expressions. Has
priority over perl
.TRUE
, matching is done
byte-by-byte rather than character-by-character.data.frame
.strsplit