Expand description
str related combinators
Structs§
- Char
Atom - Splits an str in chars
- Grapheme
Atom - Splits an str in graphemes see: UnicodeSegmentation::graphemes
- Sentence
Atom - Splits an str in sentences see: UnicodeSegmentation::unicode_sentences
- TagChar
Error - char tag error containing the expected and found char
- TagStr
Error - str tag error containing the expected and found string
- Word
Atom - Splits an str in words see: UnicodeSegmentation::unicode_words
Functions§
- bin_
digits - Takes the given quantity of ascii binary digits
- chars
- takes
qtyof chars from an input - consumed
- Returns the consumed input instead of the pipe result
- digits
- Takes the given quantity of ascii digits
- graphemes
- takes
qtyof graphemes clusters from an input - hex_
digits - Takes the given quantity of ascii hexadecimal digits
- oct_
digits - Takes the given quantity of ascii octal digits
- sentences
- takes
qtyof sentences from an input /// takesqtyof words from an input - whitespaces
- Takes the given quantity of ascii whitespaces
- with_
offset - Get the consumed offset in bytes in addition to the output of the given Pipe
- words
- takes
qtyof words from an input