I want to match a string like 19740103-0379 or 197401030379, i.e the dash is optional. How do I accomplish this with regexp?
|
|
Usually you can just use
If you want to accept 12 digits with any number of dashes in there anywhere, you might have to do something like:
which is basically zero or more dashes followed by 12 occurrences of (a digit followed by zero or more dashes) and will capture all sorts of wonderful things like:
(of course, you should use |
||||
|
You could try different ones:
You can combine them via |
|||
|
|