supprimer l'hyperlien du texte python

import re
text = re.sub(r'^https?:\/\/.*[\r\n]*', '', text, flags=re.MULTILINE)
Silly Scarab