Skip to content

Instantly share code, notes, and snippets.

@harshildarji
Created May 12, 2018 19:25
Show Gist options
  • Save harshildarji/3111c5d23e205fa9586c5e91e6a63880 to your computer and use it in GitHub Desktop.
Save harshildarji/3111c5d23e205fa9586c5e91e6a63880 to your computer and use it in GitHub Desktop.
HackerRank Regex Solutions | Python
# Regex | HackerRank
# https://www.hackerrank.com/domains/regex
# Matching Anything But a Newline
Regex_Pattern = r'...\....\....\....$'
# Matching Specific String
Regex_Pattern = r'hackerrank'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment