std
::
core
::
string
tokenize
fn
Splitter
String
.
tokenize
(
self
,
String
split
)
Create a Splitter to track tokenizing of a string. Tokenize will turn "foo:bar::baz" into
"foo", "bar" and "baz", if you want the empty string to be present, use `tokenize_all`
instead.
Parameters