I am trying to parse addresses out if it starts with a char rather than a digit with regex. If it does start with a char then i want it to put the chars in another column and everything after the digit left in the address column.
EX:
| Address |
| James May 4506 River Bind Road |
| 506 Wrong Way Lane |
After Parse:
| Address | Other stuff |
| 4506 River Bind Road | James May |
| 506 Wrong Way Lane | |