var reg=/\d\d?\s[^\d\s]+\s\d\d(\d\d)?/g; var str='23 декабря 2016'; alert(str.match(reg)); str='5 марта 16'; alert(str.match(reg));