This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Regex for turkish license plate, you can try it here: https://regex101.com/ | |
TEMPLATES = [ | |
r'\b\d{2}.{0,1}[^\d\W]{0,1}.{0,1}\b\d{4,5}\b', #99 X 9999, 99 X 99999 | |
r'\b\d{2}.{0,1}[^\d\W]{0,1}.{0,1}\b[^\d\W]{0,1}.{0,1}\b\d{3,4}\b', #99 XX 999, 99 XX 9999 | |
r'\b\d{2}.{0,1}[^\d\W]{0,1}.{0,1}\b[^\d\W]{0,1}.{0,1}\w{0,1}.{0,1}\b\d{2,3}\b' #99 XXX 99, 99 XXX 999 | |
] |