I have a field with city names and state names in this format:
Oklahoma City OK
Oakland CA
Dallas TX
Forth Worth TX
Augusta ME
I want to do the following:
Extract the City name into one field and the state abbreviation into another field.
The only consistent pattern in the data is the state abbreviation always comes after the last space in the string.
I think I need to create a RegEx expression to do be able to do this.
Can someone help me with how do this?








