Module text

Module text 

Source

Re-exports§

pub use unicode::*;

Modules§

ascii
unicode
Parsers and utilities for working with unicode inputs.

Structs§

Padded

Traits§

Char
A trait implemented by textual character types (currently, u8 and char).

Functions§

cr
Parses an OSX(MacOS)-style newline. (\r)
crlf
Parses a DOS(Windows)-style newline. (\r\n)
digits
A parser that accepts one or more ASCII digits.
inline_whitespace
A parser that accepts (and ignores) any number of inline whitespace characters.
int
Parses a non-negative integer in the specified radix.
just_ignore_case
Parses a sequence of characters, ignoring the character’s case.
lf
Parses a unix-style newline. (\n)
newline
A parser that accepts (and ignores) any newline characters or character sequences.
padded
A parser that accepts and ignores any number of whitespace characters before or after another parser.
whitespace
A parser that accepts (and ignores) any number of whitespace characters.