I need a regex to allow either a single 0 or any other number of digits that do not start with zero so:
0 or 23443 or 984756 are allowed but 0123 is not allowed.
I have got the following which allows only 1 to 9
[1-9]\d
|
I need a regex to allow either a single 0 or any other number of digits that do not start with zero so:
I have got the following which allows only 1 to 9
|
|||||
|
|
Look for a lone 0 or 1-9 followed by any other digits.
If you want to match numbers inside of larger strings, use the word boundary marker
|
|||||
|
|
You don't need to force everything into a single regex to do this. It will be far clearer if you use multiple regexes, each one making a specific check. In Perl, you would do it like this, but you can adapt it to C# just fine.
You have made explicitly clear what the intent is:
Note that the first check to see if the string is Let the expressive form of your host language be used, rather than trying to cram logic into a regex. |
|||
|
|