Skip to content

Instantly share code, notes, and snippets.

@Gasoid
Created October 1, 2014 11:03
Show Gist options
  • Save Gasoid/dd4cb6523b623829744f to your computer and use it in GitHub Desktop.
Save Gasoid/dd4cb6523b623829744f to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import re
s = re.compile(r"\[(id\d+)\|(.*)\]")
r = s.search("[id12345678|Саша], бла бал балв выф пв пвыавыфавы аыфа")
print "id %s" % r.group(1)
print "name %s" % r.group(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment