Dependency-free drop-in alternative for stringr::str_split_fixed()
.
str_split_fixed(string, pattern, n)
A character matrix with n
columns and
the same number of rows as the length of string
/pattern
.
Input vector. Either a character vector, or something coercible to one.
Pattern to look for.
The default interpretation is a regular expression,
as described in base::regex.
Control options with regex()
.
Match a fixed string (i.e. by comparing only bytes), using fixed()
.
This is fast, but approximate.
Maximum number of pieces to return.
This determines the number of columns in the output;
if an input is too short, the result will be padded with ""
.
Eli Pousson eli.pousson@gmail.com (ORCID)
Alexander Rossell Hayes alexander@rossellhayes.com (ORCID)