Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. for individualdocument in seperateddocuments:
  2.     regexp = re.compile("<TEXT>(.*?)</TEXT>", re.S)
  3.     for occurrance in regexp.finditer(individualdocument):
  4.         individualdocument += occurrance.group(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement