I have a data set of over 72,000 rows and need to extract one column (display_name) into two different columns (county and state) The data in the column looks like "Butler, (AL)" and I need it to separate.
Current Input
cnty_fips display_name Value
<chr> <chr> <dbl>
1 02013 "\"Aleutians East, (AK)\"" 125.
2 02016 "\"Aleutians West, (AK)\"" 172.
3 02020 "\"Anchorage, (AK)\"" 336.
4 02050 "\"Bethel, (AK)\"" 478.
Desired Output
County State
<chr> <chr>
1 Aleutians East AL
2 Aleutians West AL