This project contains all possible variations from 3 types of registration plates in Bosnia and Herzegovina Project includes C++ code, executable (shell, .exe) & text files
- Format:
X00-X-000 - 9 characters per plate
Xis one of letters:A, E, O, J, K, M, T00or000is a number from 0-99 or 0-999-(dash) is a syntax character- 4.900.000 combinations
- regex pattern:
^[AEOJKMT][0-9]{2}-[AEOJKMT]-[0-9]{3}$
- Format:
TA-000000 - 9 characters per plate
TAare syntax characters000000is a number from 0-999999-(dash) is a syntax character- 1.000.000 combinations
- regex pattern:
^TA-[0-9]{6}$
- Format:
CC-X-000orCCCC-X-000 - 8 or 10 characters per plate
- CC or CCCC are diplomatic codes
Xis one of letters:A, C, M, E000is a number from 0-999-(dash) is a syntax character- 368.000 combinations
- ~2.8mb .txt file
- regex pattern for
CC-X-000format:^[A-Z]{2}-[ACME]-[0-9]{3}$ - regex pattern for
CCCC-X-000format:^[A-Z]{4}-[ACME]-[0-9]{3}$
This project is licensed under the MIT License. See the LICENSE file for details.
I am not responsible for malicious use of this information and the consequences. I hope this information helps you in any way!