- Rust Standard Library Cookbook
- Jan Nils Ferner Daniel Durante
- 35字
- 2021-08-27 19:45:05
Querying with regexes
When parsing simple data formats, it is often easier to write regular expressions (or regex for short) than use a parser. Rust has pretty decent support for this through its regex crate.