R
Ron
I want to write a regular expression, I hear that using this can find
inconsistancies in input.
Here is what I need the expression to do.
Verify part numbers hat are in the following format would return true.
will begin with a C, V, K, or J.
followed by a dash than a five digit number begining with an 8 or 9
followed by a dash and then a three digit number ending in 1
so a valid number would be:
K-82205-001
can anyone show me how I would write a regular expression to verify
this?
inconsistancies in input.
Here is what I need the expression to do.
Verify part numbers hat are in the following format would return true.
will begin with a C, V, K, or J.
followed by a dash than a five digit number begining with an 8 or 9
followed by a dash and then a three digit number ending in 1
so a valid number would be:
K-82205-001
can anyone show me how I would write a regular expression to verify
this?