Module str

Module str 

Source
Expand description

str related combinators

Structs§

CharAtom
Splits an str in chars
GraphemeAtom
Splits an str in graphemes see: UnicodeSegmentation::graphemes
SentenceAtom
Splits an str in sentences see: UnicodeSegmentation::unicode_sentences
TagCharError
char tag error containing the expected and found char
TagStrError
str tag error containing the expected and found string
WordAtom
Splits an str in words see: UnicodeSegmentation::unicode_words

Functions§

bin_digits
Takes the given quantity of ascii binary digits
chars
takes qty of chars from an input
consumed
Returns the consumed input instead of the pipe result
digits
Takes the given quantity of ascii digits
graphemes
takes qty of 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 qty of sentences from an input /// takes qty of 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 qty of words from an input