strslice 0.1.1

ust library that provides zero copy string iterators for working with string slices. The library offers iterators similar to standard Rust string methods
Documentation
1
2
3
4
5
// src/str_splitn.rs
// StrSplitN iterator
// Splits a string slice by a specified delimiter up to a maximum number of splits.
// Each item returned is a &'a str referencing the original string.
// Usage: `StrSplitN::new(some_str, delimiter, max_splits)`