Hello, I'm trying to convert many file formats into a flat, fixed text format using C#. Among the formats i'm transforming are comma separated files and XML. Can anyone please give me a hint on how to get started? Thanks
: Hello, : I'm trying to convert many file formats into a flat, fixed text format using C#. Among the formats i'm transforming are comma separated files and XML. : Can anyone please give me a hint on how to get started? : Thanks
The start is... load the first file. Then, run through it and extract the words and maybe some extra info(where they were and are they between brackets, and so on). At the end, write the converted file.
Maybe be more exact in the look of the formats and give an problem were you can't go on.
Comments
: I'm trying to convert many file formats into a flat, fixed text format using C#. Among the formats i'm transforming are comma separated files and XML.
: Can anyone please give me a hint on how to get started?
: Thanks
The start is... load the first file. Then, run through it and extract the words and maybe some extra info(where they were and are they between brackets, and so on). At the end, write the converted file.
Maybe be more exact in the look of the formats and give an problem were you can't go on.