Simplified regex string generator
View the Project on GitHub wisehackermonkey/Generator_20200324_simplified_regex
by oran collins
20200324
>python .\generator_cli.py “[1-255].[1-255].[1-255].[1-255]” => 38.161.154.251
>git clone https://github.com/wisehackermonkey/Generator_20200324_simplified_regex.git
>cd Generator_20200324_simplified_regex
>python .\generator_cli.py
>python .\generator_cli.py “[1-255].[1-255].[1-255].[1-255]”
Result: [1-255].[1-255].[1-255].[1-255] => 38.161.154.251
example strings can be generated using simplified regex*
combine multiple : [acb][123][X-Z] => a2X
escaped , () and [] : [\,\(\[][123][X-Z] => \3Z
IP address : [1-255].[1-255].[1-255].[1-255] => 252.249.168.79
```