I\'m currently using regular expressions to search through RSS feeds to find if certain words and phrases are mentioned, and would then like to extract the text on either si
re.Match objects have a number of methods to help you with this:
>>> m = re.search("is", String) >>> m.span() (2, 4) >>> m.start() 2 >>> m.end() 4