Skip to content

Commit

Permalink
Merge pull request #1 from cyr1l0u/main
Browse files Browse the repository at this point in the history
Add regex resources to python.md
  • Loading branch information
xanhacks authored Dec 12, 2024
2 parents fc9118f + a52c122 commit b5903df
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion content/docs/programming/python/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ os.path.join("uploads/", "flag.txt") # uploads/../flag.txt
>>> re.match("\.", "../")
<re.Match object; span=(0, 1), match='.'>
>>> re.match("\.", "/../") # no match!
```
```

#### Testing

- [Regex Tester Online](https://pythex.org/)
- [Visual Regex Tester Online](https://pythonium.net/regex)

0 comments on commit b5903df

Please sign in to comment.