split

Function split 

Source
pub fn split<'a>() -> SplitOptionsFormer<'a>
Expand description

String tools.

Function to split a string.

It produces former. To convert former into options and run algorithm of splitting call form().

ยงSample

  let iter = strs_tools::string::split()
  .src( "abc def" )
  .delimeter( " " )
  .perform();