Full pytest documentation¶
Download latest version as PDF
Start here¶
Get Started¶
Install readyregex
¶
readyregex
requires: Python 3.7+.
(Pip) Run the following command in your command line:
pip install -U readyregex
(Conda) Run the following command in your conda environment:
conda install readyregex
Import readyregex
¶
from readyregex import *
phone_number = PhoneNumber()
print(phone_number.match("904 123 4567"))
Browse Tons of Out-Of-The-Box Patterns¶
See this list.
Create Your Own Patterns (Or Tweak Existing Ones)¶
See pattern customization or patterns from scratch.