fork download
  1. import re
  2. p = re.compile(ur'<span\b[^>]*>[^<]*</span>\s*([^<]*)<div\b')
  3. test_str = u"<span class=\"review-title\">Wont open</span> I have the GS5 and the game wont open. I got this game when i got the first droid. The fact that people havent been able to play since almost 2013 is bull. Please fix this or there isnt a point in even having the game on the server. <div class=\"review-link\" "
  4. print [x.group(1) for x in re.finditer(p, test_str)]
Success #stdin #stdout 0.01s 7736KB
stdin
Standard input is empty
stdout
[u'I have the GS5 and the game wont open. I got this game when i got the first droid. The fact that people havent been able to play since almost 2013 is bull. Please fix this or there isnt a point in even having the game on the server. ']