Skip to content

Instantly share code, notes, and snippets.

@tcotav
Created December 16, 2014 20:54
Show Gist options
  • Save tcotav/f2491b2e566e44f03f18 to your computer and use it in GitHub Desktop.
Save tcotav/f2491b2e566e44f03f18 to your computer and use it in GitHub Desktop.
because I'm dumb and never remember the regex extraction
t = "\"productId\":\"111111\""
m = re.match("\W*productId[^:]*:\D*(\d+)", t)
if m:
print m.group(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment