From a52c122ba37418b78a635b8a546588bd9654d1bb Mon Sep 17 00:00:00 2001 From: cyr1l0u <164659715+cyr1l0u@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:24:28 +0100 Subject: [PATCH] Add regex resources to python.md --- content/docs/programming/python/python.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/docs/programming/python/python.md b/content/docs/programming/python/python.md index dc12910..402b812 100644 --- a/content/docs/programming/python/python.md +++ b/content/docs/programming/python/python.md @@ -33,4 +33,9 @@ os.path.join("uploads/", "flag.txt") # uploads/../flag.txt >>> re.match("\.", "../") >>> re.match("\.", "/../") # no match! -``` \ No newline at end of file +``` + +#### Testing + +- [Regex Tester Online](https://pythex.org/) +- [Visual Regex Tester Online](https://pythonium.net/regex)