I want to build a regex to search number in a string (using c#) with range from 0000-4095. I use this string pattern:
string regex_pattern = (0?[0-3][0-9][0-9][0-9]|{4}{0}[0-9]{0}|{4}{0}{9}[0-5]);
But i can not get success.
Can you please show me some hints?
Thanks