I\'ve got a series of addresses and would like a series with just the street name. The only catch is some of the addresses don\'t have a house number, and some do.
You can use str.replace with regex ^\d+\s+ to remove leading digits:
str.replace
s.str.replace('^\d+\s+', '') Out[491]: 0 SOUTH PARK 1 BRAKER LANE 2 3RD ST 3 BIRMINGHAM PARK 4 E 12TH Name: Idx, dtype: object