Expand description
This crate includes more parser combinators to use with nom.
Functionsยง
- alphanumdot0
- alphanumdot1
- find_
all - Run the parser at each found substring.
- find_
all_ into - Run the parser at each found substring, and push the results into the provided vector.
- recognize_
separated0 - Runs the item parser interlaced by the separator parser.
- recognize_
separated1 - Runs the item parser interlaced by the separator parser.
- take_
all - Takes the items from the item parser, possibly preceded by a prefix parser.
- take_
all_ into - Takes the items from the item parser, possibly preceded by a prefix parser, and pushes the items to the provided vector.
- weblink
- Takes a weblink from the input.