Skip to content

Instantly share code, notes, and snippets.

@rafaelnp
Last active February 26, 2020 12:12
Show Gist options
  • Save rafaelnp/a94db240c156467e1cd139b01f5a2695 to your computer and use it in GitHub Desktop.
Save rafaelnp/a94db240c156467e1cd139b01f5a2695 to your computer and use it in GitHub Desktop.
List of useful python regular expressions
# Python RegEx list
# Rafael do Nascimento Pereira <rnp@25ghz.net>
#
#
# References
#
# 1 - Pytho RegEx (with examples)
# https://www.programiz.com/python-programming/regex
#
# 2 - online regex tester and debugger
# https://regex101.com/
#
import re
# match string before the hyphen '-'
# returns string: "WhatIWant"
re.search(".*(?=-)". "WhatIWant-WhatIDontWant")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment