Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 470 Bytes

README.rst

File metadata and controls

29 lines (17 loc) · 470 Bytes

Python numeric range regular expression generator

Another like packages generates incorrect or excessive patterns.

Installation

pip install range-regex

or

git clone git://github.com/dimka665/range-regex.git

Usage

from range_regex import regex_for_range

regex_for_range(12, 34)

generates :

"1[2-9]|2\d|3[0-4]"