Hi,
Hi Mleanie,
We would like to share with you that you can generate CSV file format from PDF using Aspose.PDF for .NET 20.7:
PDF to CSV
ExcelSaveOptions options = new ExcelSaveOptions();
options.ConversionEngine = ExcelSaveOptions.ConversionEngines.NewEngine;
options.Format = ExcelSaveOptions.ExcelFormat.CSV;
Document pdfDocument = new Document("Currencies.pdf");
pdfDocument.Save("Currencies.csv", options);