rexplode

Crates.iorexplode
lib.rsrexplode
version1.0.1
sourcesrc
created_at2021-12-18 12:12:39.844207
updated_at2021-12-21 18:22:01.772272
descriptionGenerate strings from the given regular expression
homepage
repositoryhttps://github.com/woxtu/rexplode
max_upload_size
id499982
size19,578
(woxtu)

documentation

README

rexplode

Crates.io

Generate strings from the given regular expression.

$ rexplode 'Number [0-6]'
Number 0
Number 1
Number 2
Number 3
Number 4
Number 5
Number 6

Supported syntax

Syntax Example
Character classes [abc] [a-c]
Composites ab a|b
Repetitions a? a{2} a{0,2}
Groups (a) (?:a)

Installation

Download the binary from the release page:

https://github.com/woxtu/rexplode/releases

Or install with Cargo:

$ cargo install rexplode

License

Copyright (c) 2021 woxtu

Licensed under the MIT license.

Commit count: 25

cargo fmt