Hi I have a text file that looks like this:
[1] "Development Name - Woodstock Terrace"
[2] "Location - 920 Trinity Avenue, Bronx 10456"
[3] "Number of Apts. - 319"
[4] "Type of Project - Co-op"
[5] "Development Name - York Hill Apartments"
[6] "Location - 1540 York Avenue, New York 10028"
[7] "Number of Apts. - 296"
[8] "Type of Project - Co-op"
I want a dataframe with columns for the development name, location, number of apartments, and type of project. Each new row starts with a new development name. In the actual file there are a few hundred rows.
Not sure how to do this. Maybe using " - " as a separator with read_delim
? Please help!