
On 17 Feb 2022, at 01:04, Tim Peters <tim.peters@gmail.com> wrote:
[J.B. Langston <jblangston@datastax.com> ]
Thanks for the conclusive answer.
Not conclusive - just my opinion. Which is informed, but not infallible ;-)
I will checkout the regex library soon.
You may not realize how easy this is? Just in case: go to a shell and type
pip install regex
(or, on Windows, "python -m pip install regex" in a DOS box).
That's it. You're done. Now you can use regex. In some cases, you can put "import regex as re" at the top of a module At worst, replace instances of "re" with "regex". Stay away from the new features, and it's highly compatible with Python;s re.
I suspect that like me what was meant is that checkout means read the docs to understand regex features. The install is trivial. Barry
_______________________________________________ Python-ideas mailing list -- python-ideas@python.org To unsubscribe send an email to python-ideas-leave@python.org https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/python-ideas@python.org/message/C35D2Z... Code of Conduct: http://python.org/psf/codeofconduct/