strtools
strtools is a rust library for various helpful string extensions. It is under active development and adding more features are planned, criticism and contributions are welcome.
Examples
use StrTools;
// split a string by some separator but ignore escaped ones
let parts: = r"this string\ is split by\ spaces unless they are\ escaped"
.split_non_escaped
.collect;
assert_eq!;
License
strtools is currently licensed under the MIT license.