regex icon indicating copy to clipboard operation
regex copied to clipboard

An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.

Results 116 regex issues
Sort by recently updated
recently updated
newest added

A small fix for a typo in a documentation comment in the `rure.h` header file.

#### What version of regex are you using? 1.10.2 (latest) #### Describe the bug at a high level. Parsing a regex string with combined characters/grapheme clusters and an error causes...

enhancement
help wanted

Currently, the default `cargo clippy` shows a lot of potential fixes. I've prepared a potential initial batch that could be applied. There are more, and if this PR merges I...

Just really minor doc fixes

This PR corrects three instances of the same misspelling.

#### What version of regex are you using? 1.10, and I used 1.7 before. Issue seems to be mainly be due the rewrite in 1.9 #### Describe the bug at...

As mentioned in issues: #285, #330, and #681, there is a strong demand for a split function that includes the delimiter (the regex match) inside the output, i.e.: ```rust let...

This makes the code a bit easier to read and smaller. The capi crate was updated to the 2021 edition to avoid accidental `panic!` and other edge cases with inlined...

Possible TODOs (not blocking): * [x] I wasn't sure if `escapeable` should be replaced by `escapable` -- too many occurrences to replace * [x] `determinizing` is another weird one *...