0
Well I’m working on a regular expression that picks up license plates, my interest would be not just picking up the license plates, but like things next to it, for example:
|Placa:AVX-4300 Fiat Uno |
Here’s the expression I’m using [A-Z]{3}-[0-9]{4}
, who can help me.
What is the format of the text you will run regex in? All are in this format: |Board:AVX-4300 Fiat Uno |?
– Max Fratane
yes, they are all in the shape of a single line, I wanted to delimit the number of next words that he picks up.
– Alexandre K vieira
But do all lines follow a defined format? If not, they will not be regular and therefore regex is not a solution. If so, what exactly is the format? You will always have the make and name of the vehicle?
– Woss
You’ll always have yes.
– Alexandre K vieira