Expand description
Extensions to &str and String
Structs§
- Char
Chunks - An iterator that splits the string in substrings of each
ncharper substring. The last item will contain the remainder ifndoes not divide the char length of the string evenly. - CharStr
- A single-char string.
- Char
Windows - An iterator that produces substrings of each
ncharper substring in a sliding window that advances one char at a time. - Prefixes
- Iterator of all non-empty prefixes
- Substrings
- Iterator of all non-empty substrings
- Suffixes
- Iterator of all non-empty suffixes
Traits§
- StrChunks
Windows - Extension traits for the
char_chunksandchar_windowsmethods - StrExt
- Extra methods for
str - StrSlice
Deprecated - Extension trait for
strfor string slicing without panicking - String
Ext - Extra methods for
String