Tool used to build regex expressions for python
Project description
Rejex
Rejex is a tool used to build regex expressions for python.
A library which can help in building regex expressions which can be used with regex libraries(such as "re") to parse strings.
Changelogs
Usage
import rejex
from rejex import Rejex, Static
rejex_test = (
Rejex()
.zero_or_one(
Rejex()
.literal("+")
.one_or_more(
Static.any_number()
)
.compile()
)
.zero_or_one(Static.literal(" "))
.zero_or_one(Static.literal("("))
.n_number_times(3, Static.any_number())
.zero_or_one(Static.literal(")"))
.zero_or_one(Static.literal(" "))
.n_number_times(3, Static.any_number())
.zero_or_one(Static.alternative(Static.literal("-"), Static.literal(" ")))
.n_number_times(4, Static.any_number())
.compile()
)
rejex.test_regex(rejex_test, "+1 (123) 123 4567") #True
"""
-------------------------------
regex_pattern='(\+(\d)+)? ?(\()?(\d){3}(\))? ?(\d){3}((-| ))?(\d){4}'
string='+1 (123) 123 4567'
match=True
-------------------------------
"""
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rejex-0.0.1.1.tar.gz
(5.4 kB
view details)
Built Distribution
File details
Details for the file rejex-0.0.1.1.tar.gz
.
File metadata
- Download URL: rejex-0.0.1.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07f783801c80fbd489038e141388a91138915afe75b2db29fb56de9c843c57ce |
|
MD5 | 1a6390166943472c5a4f77e7153f7719 |
|
BLAKE2b-256 | 42c79ea50e3a12b109ac27f594d24e1eb6e3bdf4b7f6132318cd5b6d6291055f |
File details
Details for the file rejex-0.0.1.1-py3-none-any.whl
.
File metadata
- Download URL: rejex-0.0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92e8f7f38be28b96e98c21ee21653fd09f623a8cc64cae34644b39b8a7ddb91d |
|
MD5 | 43489f575010398784f16d741ea79ec7 |
|
BLAKE2b-256 | 83e22481e97e8d5c5ada3da603f5419336f3dbcc71d476a91bae5cdfbe245113 |