Hello,
How to show image text into separate output using : (colon) as a separator
as attached image above i want Name and ABC as a separate output.
I converted that image into text but i want that separate output as above mentioned.
Thanks in advance
@abhay Read the text file, split with respect to new line, then u will get each line separately, split each line with respect to “:” then u will get Name and ABC separately likewise it repeat for all lines.
@abhay After splitting each line with respect to “:” add arr(0) as column name and arr(1) to collection at the end of for u can use add data row activity for writing row to datatatable and later u can write datatable to csv or excel.