Struct scan_rules::scanner::Wordish
[−]
[src]
pub struct Wordish<'a, Output = &'a str>(_);
Scans a single word-ish thing into a string.
Specifically, this will match a word (a continuous run of alphabetic, digit, punctuation, mark, and joining characters), a number (a continuous run of digits), or a single other non-whitespace character (i.e. /\w+|\d+|\S
/).