>>> res = re.match('mark\d','mark23song11234')>>> res.group()'mark2'>>> res = re.match('mark\d+','mark23song11234')>>> res.group()'mark23'