here is an example of my df:
data
276 '83 Rally '83 (1983) (V)\t\t\t\t1983
277 '87: A Love Story (2007)\t\t\t\t2007
278 '88 Dodge Aries (2002)\t\t\t\t\t2002
279 '9': Acting Out (2009) (V)\t\t\t\t2009
I would like to create a data frame showing only the titles and the year. Does anyone have any advice on how to go about parsing this? I think I may need to split the columns on \t\t\t\t
Title Year
276 '83 Rally '83 (1983)
277 '87: A Love Story (2007)
278 '88 Dodge Aries (2002)
279 '9': Acting Out (2009)
Here is the dput
c("# (2014)\t\t\t\t\t\t2014", "#1 (2005)\t\t\t\t\t\t2005", "#1 (2009)\t\t\t\t\t\t2009",
"#1 (2010)\t\t\t\t\t\t2010", "#1 (2010/I) (V)\t\t\t\t\t\t2010",
"#1 (2010/II) (V)\t\t\t\t\t2010")