This is a simple task, but I'm finding myself confused when I look for help. I have a column that has the entire address, I want to split it into 2 columns. One column for the building number and the other with the street name. Building numbers have a various numbers of digits. How do I split this string? I've tried using string_extract or substrfunctions.
What I have
[1]
250 Maple Street
12 North Street
1594 Cherry Road
5 Washington Drive
What I want:
[1] [2]
250 Maple Street
12 North Street
1594 Cherry Road
5 Washington Drive