text = urllib.urlopen('www.text.com').read()
frase = re.search("your text here(.*)", text).group()
With these code, I get the result as “your text here mister”…
How can I remove the your text here from the result, staying only with the “mister” part?
Specify the number of the group (= thing between parenthesis in the regex) you want to receive in the call to
group():