项目作者: Dentosal

项目描述 :
Minimal regex engine
高级语言: Rust
项目地址: git://github.com/Dentosal/reregex.git
创建时间: 2020-08-10T21:17:33Z
项目社区:https://github.com/Dentosal/reregex

开源协议:MIT License

下载


Reregex, yet another minimal regex implementation

Many standard regex features are supported, such as non-greedy matching (e.g. .*?), character set ranges ([a-z]), alternations ((a|bb)+), and graphviz dot-formatted NFA-like diagrams.

Capture groups, Lookarounds and Unicode-aware features are not supported. The engine ins’t particularly fast either.

Example: Visualize regex

  1. cargo run --example dot -- '-?([1-9][0-9]*)?[13579]' > odd.dot
  2. dot -Tpng odd.dot > odd.png

Visualization

Example: Grep

  1. cat README.md | cargo run --example grep -- '`[^`]+`'