regex
Package — UtilityPython 3.7+Intermediate
Drop-in replacement for re with additional features and Unicode support
Quick Info
- Documentation
- Official Docs
- Python Version
- 3.7+
- Dependencies
- None (C extension)
- Install
pip install regex
Learn by Difficulty
Quick Example
python
import regex print(f"regex loaded successfully") print(f"Version: {getattr(regex, '__version__', 'unknown')}")
regex is a third-party package. Drop-in replacement for re with additional features and Unicode support. Install with: pip install regex
Try in PlaygroundTags
packageutilityhelper