Enable Structural Pattern Matching for Python regular expressions
Project description
regex_spm
Enable Structural Pattern Matching (PEP-634) for Python regular expressions
The string goes in the place of the subject, wrapped by a regex_spm
function.
The various possible regex patterns go after the case
s.
Simple example
import regex_spm
match regex_spm.fullmatch_in("abracadabra"):
case r"\d+": print("It's all digits")
case r"\D+": print("There are no digits in the search string")
case _: print("It's something else")
regex_spm
provides 3 functions, which correspond to re
search functions:
re.search
→regex_spm.search_in
re.match
→regex_spm.match_in
re.fullmatch
→regex_spm.fullmatch_in
Accessing the match object
To access the matched groups or the entire re.Match
object, simply capture the pattern:
match regex_spm.fullmatch_in("123,45"):
case r"(\d+),(?P<second>\d+)" as m:
print("Notice the `as m` at the end of the line above")
print(f"The first group is {m[1]}")
print(f"The second group is {m['second']}")
print(f"The full `re.Match` object is available as {m.match}")
Pattern caveats (workaround below)
#1: Due to the mechanics of Python SPM, it is not possible to use case blocks like case re.compile(r"my-regex"): ...
. Python would try to use re.compile
as a class name, which does not
exist.
#2: It is also not possible to save patterns to simple local variables like:
pattern1 = r"my-first-pattern"
pattern2 = re.compile(r"my-second-pattern")
match regex_spm.search_in(my_string):
case pattern1: print("This does not work, it matches any string. Python interprets `pattern1` "
"as simply a new capture variable name, hiding its previous value.")
case pattern2: print("This does not work either")
Using patterns from variables (caveat workaround)
Python requires "value patterns" to use a "dotted name", i.e. there must be a .
in tha name used
to reach the stored pattern.
Putting stored patterns in a class like below is sufficient.
class PageRegexes:
index = re.compile(r"example\.com/index.html")
shopping_cart = r"example\.com/shopping_cart.html"
match regex_spm.search_in(my_url):
case PageRegexes.index: print("It's the index page")
case PageRegexes.shopping_cart: print("It's the shopping cart page")
case r"example\.com/about.html": print("You can even mix and match")
Install
Requires Python 3.10+ of course
pip install regex_spm
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
Built Distribution
File details
Details for the file regex_spm-1.0.0.tar.gz
.
File metadata
- Download URL: regex_spm-1.0.0.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e075e5fc04a6f22ebfa2419682d36c1662bba59cb8a1caf2339e74326f98bcef |
|
MD5 | 963f34b80753418d1c7be482179c7c82 |
|
BLAKE2b-256 | c19e99f27ec3376f36268dc13420b467930b774145d47efd76774053972d7a51 |
File details
Details for the file regex_spm-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: regex_spm-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a67b73518f49ea361c92a69a447cfbd59e171516726c959ad4c9045613bf902 |
|
MD5 | 6c30954c411f4305384a56fc4e32e234 |
|
BLAKE2b-256 | fadf190f22a7c51b4cce92127513ffead39e925b01e4d8f589794c37e3786c72 |