pyregex icon indicating copy to clipboard operation
pyregex copied to clipboard

pyregex is a Python Regular Expression Online Tester

Results 13 pyregex issues
Sort by recently updated
recently updated
newest added

Sorry if I am missing the obvious. I just tried to test the pyregex with something complex, but I could not understand its output. Then, I tried something even as...

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.9 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...

dependencies
python

Bumps [flask-cors](https://github.com/corydolphin/flask-cors) from 3.0.8 to 3.0.9. Release notes Sourced from flask-cors's releases. Release 3.0.9 Security Escape path before evaluating resource rules (thanks @​praetorian-colby-morgan). Prior to this, flask-cors incorrectly evaluated CORS...

dependencies
python

Bumps [jinja2](https://github.com/pallets/jinja) from 2.11.2 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...

dependencies

This [simply pattern](http://www.pyregex.com/?id=eyJyZWdleCI6Ii4rQC4rXFwuLisiLCJmbGFncyI6MCwibWF0Y2hfdHlwZSI6Im1hdGNoIiwidGVzdF9zdHJpbmciOiJyb2RvbGZvLnVlZ0BnbWFpbC5jb20ifQ%3D%3D) is worked well. But I don't know why this patterns can't be save, what is too long? **1. mode: `findall`** **2. patterns** ``` (https?://)?(www\.)?(youtube|youtu|youtube-nocookie)\.(com|be)/(watch\?v=|embed/|v/|.+\?v=)?([^&=%\?]{11}) ``` **3. strings**...

```python >>> import re >>> regex = r'ě' >>> test_string = 'ě' >>> flags = 0 >>> re.compile(regex, flags).match(test_string) ``` Using the same character (ě), or any string that contains...

teststring: `" foo"` Neither of the following regex matches ``` ^[ ]{2}.* ^ {2}.* ```

A very long (a lot) test_string causes the HTTP 414 error code, because the URI gets too long. I think this is, because the actual regex execution is done via...