5 releases
0.1.5 | Jun 12, 2022 |
---|---|
0.1.4 | Jun 12, 2022 |
0.1.2 | May 31, 2022 |
0.1.1 | May 16, 2022 |
0.1.0 | Jan 10, 2022 |
#9 in #manipulate
33 downloads per month
1MB
22K
SLoC
Module :: wstring_tools
Tools to manipulate strings.
Sample
#[ cfg( all( feature = "split", feature = "use_std" ) ) ]
{
/* delimeter exists */
let src = "abc def";
let iter = wstring_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 = wstring_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 wstring_tools
Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/wstring_tools_trivial
cargo run
Dependencies
~3MB
~74K SLoC