Hello,
I feel like I've searched the whole internet now, but I can't get it to work.
I have a CSV file in the SharePoint, with the content i get via "get file content".

I now must divide the content; each line ends with "/r/n"
I have tried this
split(body('Get_file_content'), '\r\n')
and that
split(body('Get_file_content'),decodeUriComponent('%0D%0A'))
and more.
But nothing works.
If I first load the content into a string variable, it works for small files, but not for large ones.