Hi people,
I have a list of addresses which needs to be split from 'Street+BuildingNumber ' to 'Street' and 'BuildingNumber'.
I have a file with REGEX that might work on these addresses, so running each REGEX one by one (in top-down order) against my addresses will eventually split the address into Street and BuildingNumber.
Once this is achieve, it goes to the next record and try to split it with those REGEX.
Is there a way to achieve this?
As it is a lot, I don't want to use SQLCreator and put every REGEX in there.
Looking forward for any light at the end of the tunnel...