RegexGenerator 
Simple library for generating regular expressions
Installation
Add this line to your application's Gemfile:
gem 'regex_generator'
And then execute:
$ bundle
Or install it yourself as:
$ gem install regex_generator
Usage
RegexGenerator.generate('45', 'some text 45')
You can pass target as hash to generate regex with named capturing groups.
You can use additional options to generate regex. For example:
RegexGenerator.generate('45', 'some text 45', exact_target: true)
Allowed options:
:exact_target- When ittrueregex will generated for exact target value:self_recognition- Symbols that will be represented as itself. Can be string or array
Contributing
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
License
The gem is available as open source under the terms of the MIT License.