What is the Match Pattern regular expression to match any one of the following"
UCHAR, ULONG, USHORT, UINT, char, long, short, int, char*, char *
I currently have:
[U*][cC|sS|iI|lL][hH|oO|nN][aA|oO|nN][(rR|tT|gG)*][(tT|gG)*]
This only catches "USHORT" and not "UCHAR"; Please help, thanks!
Kevin