I have a location area from an address, but it has the zip code baked in. I need to take the numbers out of the data. Example; ‘Christchurch 8023’ → make it ‘Christchurch’

I have a location area from an address, but it has the zip code baked in. I need to take the numbers out of the data. Example; ‘Christchurch 8023’ → make it ‘Christchurch’


You can do something like this.
Here’s an alternative way using a Math columns and Replace All column:

Here you go.
I added a space after A-Z like this and it worked out ([a-zA-Z ]+)
Theoretically your solution will work with space characters, but if you have tabs or line breaks then I believe \s covers them.