strs_tools 0.44.0

Tools to manipulate strings.
Documentation
//! For debugging split issues.
// This file is for debugging purposes only and will be removed after the issue is resolved.

#[ cfg( all( feature = "string_split", feature = "std" ) ) ]
#[ test ]
fn debug_split_issue() 
{
  use strs_tools ::string ::split;

  let input = r#"cmd name :: "a\\\\b\\\"c\\\'d\\ne\\tf""#;
  let splitter = split()
  .src(input)
  .delimeter(" :: ")
  .quoting(true)
  .perform();

  println!("Input: {input:?}");
  for item in splitter 
  {
  println!("Split item: {item:?}");
 }
}