5
Answers

Parsing

person

person

15y
2.6k
1
Hi,

I would like to convert an Excel spreadsheet into a text file through my WPF/Win forms application.
From here I need to parse this text file and retrieve important data from it.

The parsing of the text file is fine (i think), though how would I go about converting a excel file into a text file in C#?

Any help is appreciated.

Thanks,

Person.
Answers (5)
0
theLizard

theLizard

NA 5.1k 282.2k 15y
Good to see you found the answer yourself, research is the best form of learning.
0
person

person

NA 96 0 15y
Its ok I got a decent example, now I understand the need for OleDB provider.
This is the link incase anyone else reads this and would like an example - http://www.c-sharpcorner.com/UploadFile/yuanwang200409/102242008174401PM/1.aspx

Thanks anyway!

Person.
0
person

person

NA 96 0 15y
How will Microsoft.OLEDB be used to parse and convert an excel file given that I dont want/nor should need a database involved? Or am I missing something?
I want the text file to be plain text.

I have an excel file, I want this to be converted 'as is' to plain text so that each row in the spreadsheet will be inserted as a line in the text file.

I will use regular expressions to parse the text file and retreive the objects necessary.

If anyone has any decent links to even a partial example so I can get my mind round how this process should work, would be appreciated.

Thanks greatly in advance.

Person.
0
Amit Choudhary

Amit Choudhary

NA 27.7k 3m 15y
Hi friend,
 you can fetch the complete excel sheet data into you Dataset using Microsoft.OLEDB.Jet.4.0 providers so ... whatever type  of formatting you want you can create that programmatically. Then you can using the Sytem.IO to create the text file...

0
theLizard

theLizard

NA 5.1k 282.2k 15y

This would depend on how you want columns to appear in the text file and what type of text file, plain text or RTF..