Split the string at the first occurrence of sep, and return a list of character vectors containing the part
before the separator, the separator itself, and the part after the separator.
Usage
pystr_partition(str, sep)
Arguments
str
A character vector.
sep
A character string.
Value
A list of character vectors.
Details
If the separator is not found, return a character vector containing the string itself, followed by two empty strings.