I'm new to RegEx and I'm trying to match a specific number that has 8 digits, and has 3 start options:
- 00
- 15620450000
- VS
For Example:
- 1562045000012345678
- VS12345678
- 0012345678
- 12345678
I don't want to match the 4th option. Right now I have managed to match the first and third options, but I'm having problems with the second one, I wrote this expression, trying to match the 8 digits under 'Project':
156204500|VS|00(?<Project>\d{8})
What should I do?
Thanks