>>> stringa = '€. 219,00'<br>>>> pattern = '\d+,\d+'<br>>>> import re<br>>>> reMatch = re.search(pattern,stringa)<br>>>> type(reMatch)<br><type '_sre.SRE_Match'><br>
>>> reMatch.group()<br>'219,00'<br><br><br>match equivale a re.search('^'+pattern, stringa)<br><br>