I have copied the content of a webpage into a .txt file and I would like to read it into R properly. Here is how my data looks with 9 columns:
5 11111 A, B z L 2800 +25 11 2000.04.13
4 2222 C, D z M 2730 -25 30 2001.05.23
66 333 E, F z N 2680 +45 23 2002.12.14
7 44444 G, H z O 2665 +5 21 2003.03.18
111 5 I, J z P 2645 +5 38 2004.02.22
In each row, there is a blank space on the left (before the first column starts) whose length differs for one-digit, two-digit,... numbers in the first column. The letters A,B,C... in the third column are first names and last names (with different lengths), separated with a comma and "one" space (i.e. A, B is the full name of the first person). The between-column separator is different in each row.
Does anybody have an idea how I can read this text into a dataframe with columns correctly specified?
Thank you!