Rust Standard Library Cookbook
上QQ阅读APP看书,第一时间看更新

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.