1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00
ripgrep/grep
Andrew Gallant 6a8051b258 Don't union inner literals of repetitions.
If we do, this results in extracting `foofoofoo` from `(\wfoo){3}`,
which is wrong. This does prevent us from extracting `foofoofoo` from
`foo{3}`, which is unfortunate, but we miss plenty of other stuff too.
Literal extracting needs a good rethink (all the way down into the regex
engine).

Fixes #93
2016-09-25 20:10:28 -04:00
..
src Don't union inner literals of repetitions. 2016-09-25 20:10:28 -04:00
Cargo.toml grep 0.1.2 2016-09-21 19:14:12 -04:00
README.md add readme 2016-09-13 21:15:10 -04:00

grep

This is a library that provides grep-style line-by-line regex searching (with comparable performance to grep itself).