Skip to content

Instantly share code, notes, and snippets.

@jrfondren
Created May 29, 2019 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrfondren/c66c29d2333d005342c7b59b8092dde0 to your computer and use it in GitHub Desktop.
Save jrfondren/c66c29d2333d005342c7b59b8092dde0 to your computer and use it in GitHub Desktop.
import re
let
haystack = "example v22"
versionRe = re"v(\d+)$"
if haystack =~ versionRe:
echo "Version: ", matches[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment