Reputation: 3
I need a regex pattern to match this format ABC12345678
:
it should start with ABC and should have preceding 8 numbers.
Upvotes: 0
Views: 97
Reputation: 26468
txt2re is a great online resource for creating regex from a string. It also generates code samples in many languages including c#.
Upvotes: 0
Reputation: 26141
Whenever I have to write a regex (which I try to avoid as much as possible), I refer to this .NET regex cheat sheet.
Upvotes: 1