help with grep




I'm trying to match 'ABCD 252'.

There is a variable number of spaces before the 2.
The 252 could be any number.

I tried:
grep 'ABCD[:blank:]+[:digit:]+' file
.