regen

Tool to generate random strings from Go/RE2 regular expressions

Github星跟蹤圖

regen

$ go get go.spiff.io/regen

regen is a small tool to generate more or less random strings from Go RE2 regular expressions. You
can read up on RE2 at https://github.com/google/re2/wiki/Syntax.

As a few examples:

$ regen -n 2 '0x[\da-f]{16}'
0x8f5858102a5ce124
0x3e4c9fee6c9f419d

$ regen -n 3 '[a-z]{6,12}(\+[a-z]{6,12})?@[a-z]{6,16}(\.[a-z]{2,3}){1,2}'
iprbph+gqastu@regegzqa.msp
abxfcomj@uyzxrgj.kld.pp
vzqdrmiz@ewdhsdzshvvxjk.pi

Essentially, all regen does is parse the regular expressions it's given and iterate over the tree
produced by regexp/syntax and attempt to generate strings
based on the ops described by its results. This could probably be optimized further by compiling the
resulting Regexp into a Prog, but I didn't feel like this was worthwhile when it's a very small
tool.

Currently, handling word boundaries is not supported and will cause regen to panic in response. The
way line endings and EOT is handled are also likely incorrect and they'll need some more thinking
put into them.

Some additional information can be found at https://godoc.org/go.spiff.io/regen.

Contributing

Currently, development of regen is happening over at https://git.spiff.io. If you'd like to submit
a patch, please first open an issue on GitHub to discuss what you'd like to do and we can go from
there. regen does not currently accept pull requests because changes are replicated from Gerrit to
GitHub, but not vice versa.

License

regen is licensed under a 2-clause BSD license. This can be found in LICENSE.txt.

主要指標

概覽
名稱與所有者nilium/regen
主編程語言Go
編程語言Go (語言數: 1)
平台
許可證BSD 2-Clause "Simplified" License
所有者活动
創建於2016-03-05 03:01:15
推送於2024-10-27 20:32:40
最后一次提交2018-05-25 14:38:16
發布數3
最新版本名稱v0.2.0 (發布於 2024-10-27 13:31:53)
第一版名稱v0.1.0 (發布於 )
用户参与
星數79
關注者數1
派生數3
提交數24
已啟用問題?
問題數1
打開的問題數1
拉請求數0
打開的拉請求數0
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?