I have a file in Azure blob container as below,
[Header 1]
123,abc,456,def,..
[Header 2]
789,XYZ, 101,PQR,..
567,DEF,675,GEF,..
I am expecting Azure data factory to convert it into multiple CSV files in blob container as below,
CSV1 file:
123,abc,456,def,..
CSV2 file:
789,XYZ, 101,PQR,..
567,DEF,675,GEF,..
The number of headers is known and always constant. But the number of rows under each header can vary.