Hello,
I am trying to detect european VIN via the rtr sdk.
I have the following regEx.
([A-HJ-NPR-Z]|\d){3}(\d|[A-HJ-NPR-Z]){6}(\d|[A-HJ-NPR-Z]){4}\d{4}
The app does not detect any valid string. I do not know why.
Thank you!
Hello,
I am trying to detect european VIN via the rtr sdk.
I have the following regEx.
([A-HJ-NPR-Z]|\d){3}(\d|[A-HJ-NPR-Z]){6}(\d|[A-HJ-NPR-Z]){4}\d{4}
The app does not detect any valid string. I do not know why.
Thank you!
0 out of 0 found this helpful
Comments
1 comment
This behaviour may occur if recognized characters were not matched properly with a regular expression.You may try to build up your regular expression piece by piece and find out after what regular expression's piece characters are stop to recognize.
Please sign in to leave a comment.