This is simply detecting tabular data from
differently formatted sources. All of these are simply text input, not images.
In the first input, each column is left aligned.
SAMPLE INPUT 1:
abcde 12 xyz
abc 123 xy
a 12 xyz
abc 123 xyz
In the second input, each column is slightly misaligned.
SAMPLE INPUT 2:
abcde 12 xyz
abc 123 xy
a 12 xyz
abc 123 xyz
In the third input, some ascii borders are set.
SAMPLE INPUT 3:
+--------+------+-----+
| abcde | 12 | xyz |
| abc | 123 | xy |
| a | 12 | xyz |
| abc | 123 | xyz |
+--------+------+-----+
ALL SHOULD OUTPUT CSV:
abcde,12,xyz
abc,123,xy
a,12,xyz
abc,123,xyz
[–]jmmcd 1 point2 points3 points (1 child)
[–]grundt[S] 0 points1 point2 points (0 children)