Crate strs_tools
source ·Expand description
§Module :: strs_tools
Tools to manipulate strings.
§Basic use-case
#[ cfg( all( feature = "split", not( feature = "no_std" ) ) ) ]
{
/* delimeter exists */
let src = "abc def";
let iter = strs_tools::string::split()
.src( src )
.delimeter( " " )
.stripping( false )
.perform();
let iterated = iter.map( | e | String::from( e ) ).collect::< Vec< _ > >();
assert_eq!( iterated, vec![ "abc", " ", "def" ] );
/* delimeter not exists */
let src = "abc def";
let iter = strs_tools::string::split()
.src( src )
.delimeter( "g" )
.perform();
let iterated = iter.map( | e | String::from( e ) ).collect::< Vec< _ > >();
assert_eq!( iterated, vec![ "abc def" ] );
}
§To add to your project
cargo add strs_tools
§Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/wstring_tools_trivial
cargo run
§Sample
Re-exports§
Modules§
- Exposed namespace of the module.
- Parented namespace of the module.
- Namespace of the module to include with
use module::*
. - Protected namespace of the module.
- String tools.