Used datascraping to extract a table.
howeverm it only managed to extract everything in a column only.
How should i split them into the respective columns?
e.g.
the actual DT in the web:
No.|Name|Age|Address|ID
1 |Aly |23| asdasd | 123
2 |Ady|24|asdads | 456
but data scrap only managed to extract:
No.
Name
Age
Address
ID
1
2
Aly
Ady
23
24
asdasd
asdads
123
456
is there any way i can convert the extracted to the desired dt?