I have a tab delimited file I'd like to parse in power automate using the split function. Does anyone know how to specify the tab?
I've been adapting from tutorials on parsing CSV so went from
split(first(outputs('splitByLines')), ',')
which works with a csv file, to things like
split(first(outputs('splitByLines')), '\t')
which does not work for my tab delimited file.
Thank you in advance.