I have a requirement where i need to read data from a text file line by line.
I can get the file content, which has all the content. Need help on splitting data into each line and getting that data line by line.

I have a requirement where i need to read data from a text file line by line.
I can get the file content, which has all the content. Need help on splitting data into each line and getting that data line by line.
Hi @shonith
Have you tried splitting the file content on an enter key or a /n? You can collect the split items in an array and then iterate over each single line then.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!