grex


Build Status codecov Crates.io Docs.rs Downloads license

Linux Download MacOS Download Windows Download

Table of Contents

  1. What does this tool do?
  2. Current features
  3. How to install?
    3.1 The command-line tool
    3.2 The library
  4. How to use?
    4.1 The command-line tool
    4.2 The library
    4.3 Examples
  5. How does it work?
  6. Do you want to contribute?

1. What does this tool do? Top ▲

grex is a library as well as a command-line utility that is meant to simplify the often complicated and tedious task of creating regular expressions. It does so by automatically generating regular expressions from user-provided test cases.

This project has started as a Rust port of the JavaScript tool regexgen written by Devon Govett. Although a lot of further useful features could be added to it, its development was apparently ceased several years ago. The plan is now to add these new features to grex as Rust really shines when it comes to command-line tools. grex offers all features that regexgen provides, and more.

The philosophy of this project is to generate the most specific regular expression possible by default which exactly matches the given input only and nothing else. With the use of command-line flags (in the CLI tool) or preprocessing methods (in the library), more generalized expressions can be created.

2. Current Features Top ▲

3. How to install? Top ▲

3.1 The command-line tool Top ▲

Pre-compiled 64-Bit binaries are available within the package managers Scoop (for Windows) and Homebrew (for macOS).

Scoop

scoop install grex

Homebrew

brew tap pemistahl/formulas brew install grex

Alternatively, you can download the self-contained executable for your platform above and put it in a place of your choice. grex is also hosted on crates.io, the official Rust package registry. If you are a Rust developer and already have the Rust toolchain installed, you can install by compiling from source using cargo, the Rust package manager:

cargo install grex

3.2 The library Top ▲

In order to use grex as a library, simply add it as a dependency to your Cargo.toml file:

toml [dependencies] grex = "0.3"

4. How to use? Top ▲

Every generated regular expression is surrounded by the anchors ^ and $ so that it does not accidentally match substrings.

4.1 The command-line tool Top ▲

``` $ grex --help grex 0.3.2 Peter M. Stahl pemistahl@gmail.com grex generates regular expressions from user-provided test cases.

USAGE: grex [FLAGS] ... --file

FLAGS: -r, --convert-repetitions
Detects repeated non-overlapping substrings and converts them to {min,max} quantifier notation

-e, --escape                 
        Replaces all non-ASCII characters with unicode escape sequences

    --with-surrogates        
        Converts astral code points to surrogate pairs if --escape is set

-h, --help                   
        Prints help information

-v, --version                
        Prints version information

OPTIONS: -f, --file
Reads test cases separated by newline characters from a file

ARGS: ...
One or more test cases separated by blank space ```

Input strings can be read from the command line or from a file. Every file must be encoded as UTF-8 and every input string must be on a separate line:

$ grex -f my-input-file.txt

4.2 The library Top ▲

Default settings

rust let regexp = grex::RegExpBuilder::from(&["a", "aa", "aaa"]).build(); assert_eq!(regexp, "^a(aa?)?$");

Convert repeated substrings

rust let regexp = grex::RegExpBuilder::from(&["a", "aa", "aaa"]) .with_converted_repetitions() .build(); assert_eq!(regexp, "^a{1,3}$");

Escape non-ascii characters

rust let regexp = grex::RegExpBuilder::from(&["You smell like 💩."]) .with_escaped_non_ascii_chars(false) .build(); assert_eq!(regexp, "^You smell like \\u{1f4a9}\\.$");

Escape astral code points using surrogate pairs

Old versions of JavaScript do not support unicode escape sequences for the astral code planes (range U+010000 to U+10FFFF). In order to support these symbols in JavaScript regular expressions, the conversion to surrogate pairs is necessary. More information on that matter can be found here.

rust let regexp = grex::RegExpBuilder::from(&["You smell like 💩."]) .with_escaped_non_ascii_chars(true) .build(); assert_eq!(regexp, "^You smell like \\u{d83d}\\u{dca9}\\.$");

Combine multiple features

rust let regexp = grex::RegExpBuilder::from(&["You smell like 💩💩💩."]) .with_converted_repetitions() .with_escaped_non_ascii_chars(false) .build(); assert_eq!(regexp, "^You smel{2} like \\u{1f4a9}{3}\\.$");

4.3 Examples Top ▲

The following table showcases what grex can do (using the command-line flags here):

| Input | Output | Note | | ----- | ------ | ---- | | a b c | ^[a-c]$ | | | a c d e f | ^[ac-f]$ | | | 1 3 4 5 6 | ^[13-6]$ | | | a b x de | ^(de|[abx])$ | | | a b bc | ^(bc?|a)$ | | | a aa aaa | ^a(aa?)?$ | | | a ab abc | ^a(bc?)?$ | | | 3.5 4.5 4,5 | ^(3\.5|4[,.]5)$ | | | [a-z] | ^\[a\-z\]$ | Regex syntax characters are escaped. | | y̆ a z | ^([az]|y̆)$ | Grapheme consists of two unicode symbols:
U+0079 (Latin Small Letter Y)
U+0306 (Combining Breve).
This is why it is not part of
the character class. | | "I ♥ cake" "I ♥ cookies" | ^I ♥ c(ookies|ake)$ | Input containing blank space must be
surrounded by quotation marks. | | "I \u{2665} cake" | ^I ♥ cake$ | Unicode escape sequences are converted
back to the original unicode symbol. | | -r aaa | ^a{3}$ | | | -r abababa | ^(ab){3}a$ | | | -r aababab | ^a(ab){3}$ | | | -r abababaa | ^(ab){3}a{2}$ | | | -r a aa aaa | ^a{1,3}$ | | | -r b ba baa baaa | ^b(a{1,3})?$ | | | -r b ba baa baaaa | ^b(a{1,2}|a{4})?$ | | | -r xy̆y̆z xy̆y̆y̆z | ^x(y̆){2,3}z$ | The parentheses are needed because
consists of two unicode symbols. | | -r xy̆y̆z xy̆y̆y̆y̆z | ^x((y̆){2}|(y̆){4})z$ | | | -r zyxx yxx | ^z?yx{2}$ | | | -r 4.5 44.5 44.55 4.55 | ^4{1,2}\.5{1,2}$ | | | -r "I ♥♥ cake" | ^I ♥{2} cake$ | | | -r "I \u{2665}\u{2665} cake" | ^I ♥{2} cake$ | | | -e "I ♥♥ you." | ^I \u{2665}\u{2665} you\.$ | | | -e -r "I ♥♥ you." | ^I \u{2665}{2} you\.$ | | | -e "You smell like 💩💩." | ^You smell like \u{1f4a9}\u{1f4a9}\.$ | | | -e -r "You smell like 💩💩." | ^You smel{2} like \u{1f4a9}{2}\.$ | | | -e -r --with-surrogates "You smell like 💩💩." | ^You smel{2} like (\u{d83d}\u{dca9}){2}\.$ | For languages such as older
JavaScript versions not supporting
astral codepoints (U+010000 to U+10FFFF),
conversion to surrogate pairs is possible.
More info about this issue can be found here. |

5. How does it work? Top ▲

  1. A deterministic finite automaton (DFA) is created from the input strings.

  2. The number of states and transitions between states in the DFA is reduced by applying Hopcroft's DFA minimization algorithm.

  3. The minimized DFA is expressed as a system of linear equations which are solved with Brzozowski's algebraic method, resulting in the final regular expression.

6. Do you want to contribute? Top ▲

In case you want to contribute something to grex even though it's in a very early stage of development, then I encourage you to do so nevertheless. Do you have ideas for cool features? Or have you found any bugs so far? Feel free to open an issue or send a pull request. It's very much appreciated. :-)