I've the following string
Month: March 2011
Month: January 2012
Month: December 2011
and I'd like to write a regex which select the name of the month (ie "March") only for 2011. This mean to select everything between the string "Month: " and the year "2011". The regex I made is
^(Month:)[A-Za-z0-9]+(2011)$
but it doesn't seem to work. What's wrong??? The results should be "March" and "December". Thanks!