I'm trying to change American formatted dates to British using the expression from this support site. My first problem is that (<[ADFJMNOS]*>)
([0-9]{1,2}), ([0-9]{4}) is finding the entire paragraph leading up to the date ending with a year. But when I use
(January) ([0-9]{1,2}), ([0-9]{4}) and replace with \2 \1 \3 it transposes the date, but the spaces appear at the end of the replaced string (e.g. 18January2012[space][space]). What am I doing wrong?