Regex question to replace characters in album title

I have album titles starting with "Mozart 020-", "Mozart 120-" etc. I'd like to know the Regex to replace "Mozart xxx-" with "Mozart ". Thanks for your help!
Herman

The regexp could look like this:
regexp(%title%,^Mozart \d+\-,Mozart )

Thanks a lot, that's what I needed!