The 'RE' makes sense if we interpret the 'U' as being similar to set union. However, it is more conventional to use a '|' symbol to denote alternatives.
First, you are only dealing with integer constants, not with floating point or character or string constants, let alone more complex constants.
Second, you have omitted '0X' as a valid hex prefix.
Third, you have omitted the various suffixes: U, L, LL, ULL (and their lower-case and mixed case synonyms and permutations).
Also, the C standard (ยง6.4.4.1) distinguishes between digits and non-zero digits in a decimal constant:
decimal-constant:
nonzero-digit
decimal-constant digit
Any integer constant starting with a zero is an octal constant, never a decimal constant. In particular, writing 0 is writing an octal constant.
098is not a valid integer constant. – Philip Potter Aug 31 '10 at 13:510xabis.. – ring0 Aug 31 '10 at 14:010b101(on some compilers) – Nick T Aug 31 '10 at 14:43+and-signs are actually the unary plus and minus operators and are not part of the integer constant. – James McNellis Aug 31 '10 at 16:43