
नियमित अभिव्यक्तियों पर अनियमित विधियाँ
रेगुलर एक्सप्रेशन के लिए अनियमित विधियाँ।
Exrex एक कमांड लाइन टूल और पायथन मॉड्यूल है जो दिए गए रेगुलर एक्सप्रेशन के सभी - या यादृच्छिक - मिलान वाले स्ट्रिंग उत्पन्न करता है और भी बहुत कुछ। यह शुद्ध पायथन है, बिना किसी बाहरी निर्भरता के।
कुछ रेगुलर एक्सप्रेशन के अनंत मिलान वाले स्ट्रिंग होते हैं (जैसे: [a-z]+), ऐसे मामलों में exrex अनंत भागों की अधिकतम लंबाई को सीमित करता है।
Exrex जनरेटर का उपयोग करता है, इसलिए मेमोरी उपयोग मिलान वाले स्ट्रिंग की संख्या पर निर्भर नहीं करता है।
विशेषताएँ
exrex को स्थापित करने के लिए, बस:
$ pip install exrex
या
$ easy_install exrex
>>> import exrex
>>> exrex.getone('(ex)r\\1')
'exrex'
>>> list(exrex.generate('((hai){2}|world!)'))
['haihai', 'world!']
>>> exrex.getone('\d{4}-\d{4}-\d{4}-[0-9]{4}')
'3096-7886-2834-5671'
>>> exrex.getone('(1[0-2]|0[1-9])(:[0-5]\d){2} (A|P)M')
'09:31:40 AM'
>>> exrex.count('[01]{0,9}')
1023
>>> print '\n'.join(exrex.generate('This is (a (code|cake|test)|an (apple|elf|output))\.'))
This is a code.
This is a cake.
This is a test.
This is an apple.
This is an elf.
This is an output.
>>> print exrex.simplify('(ab|ac|ad)')
(a[bcd])
> exrex --help
usage: exrex.py [-h] [-o FILE] [-l] [-d DELIMITER] [-v] REGEX
exrex - regular expression string generator
positional arguments:
REGEX REGEX string
optional arguments:
-h, --help show this help message and exit
-o FILE, --output FILE
Output file - default is STDOUT
-l N, --limit N Max limit for range size - default is 20
-c, --count Count matching strings
-m N, --max-number N Max number of strings - default is -1
-r, --random Returns a random string that matches to the regex
-s, --simplify Simplifies a regular expression
-d DELIMITER, --delimiter DELIMITER
Delimiter - default is \n
-v, --verbose Verbose mode
उदाहरण:
$ exrex '[asdfg]'
a
s
d
f
g
$ exrex -r '(0[1-9]|1[012])-\d{2}'
09-85
$ exrex '[01]{10}' -c
1024
बग या सुझाव? इश्यू ट्रैकर पर जाएँ।
http://exrex.readthedocs.org/en/latest/
re.sre_parse.CATEGORIES) (30%)n अलग-अलग यादृच्छिक मिलान वाले स्ट्रिंग का उत्पादनexrex is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
exrex is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with exrex. If not, see < http://www.gnu.org/licenses/ >.
(C) 2012- by Adam Tauber, <[email protected]>
exrex '( {20}(\| *\\|-{22}|\|)|\.={50}| ( ){0,5}\\\.| {12}~{39})'exrex '(o|O|0)(_)(o|O|0)'ऐसे उपकरण जो किसी दिए गए पैटर्न से मेल खाने वाले सभी संभावित स्ट्रिंग की सूची उत्पन्न करते हैं:
ऐसे उपकरण जो एक-एक करके यादृच्छिक स्ट्रिंग उत्पन्न करते हैं जो किसी दिए गए पैटर्न से मेल खाते हों:
rstr पायथन मॉड्यूल की एक विधि)python -m cProfile exrex.py '[a-zA-Z][a-zA-Z][a-zA-Z][a-zA-Z]' -o /dev/nullpython -m cProfile exrex.py '[0-9]{6}' -o /dev/null