I need to find a dutch zip code in a file.
example: "1234AB" or "1234 AB" (four number+two letters)
I found this expression:
[0-9]{4}[\s]*[A-Za-z]{2}
but this does not work.
It has someting to do with the {} can somebody offer a suggestion how to work around this?
Thnx
example: "1234AB" or "1234 AB" (four number+two letters)
I found this expression:
[0-9]{4}[\s]*[A-Za-z]{2}
but this does not work.
It has someting to do with the {} can somebody offer a suggestion how to work around this?
Thnx