Parsing MS Word file into Excel using C -


At work, I have been given a large MS Word file that has many data entries, all of which are formatted in the same way:

/ P>

  01- FOOBER Random Company Name PO Box 2482424 Olahoma City, OK 22498-12937 United States United States  

Actually copies and pasting this information has been done in the Excel spreadsheet, but it seems that more than 1000 There are entries that can take days. I have some experience in C, but not a comprehensive programming experience, and I am running a basic Dev dev environment very soon. Can it be done easily in C? Should I look elsewhere? I really need to run this program only for one file.

Try regular expression like this:

  ^ \ d {1,4} - (. * \ N) {4}  

^: Start line \ d: any digit
{1,4}: One to four digits ( Because you have more than 1000 entries)
(. * \ N) {4}: Four rows for address


Comments

Popular posts from this blog

winforms - C# Form - Property Change -

javascript - amcharts makechart not working -

java - Algorithm negotiation fail SSH in Jenkins -