05-11-2005 07:31 PM
05-11-2005 08:32 PM
05-11-2005 08:46 PM
@altenbach wrote:
First read everything as one long string, then chop it up later.
There are many ways to do this, e.g. use "scan strings for tokens" to get the position of the 16th linefeed, then feed the rest through "spreadheet string to array".
I don't quite understand what you mean to keep the numerical characters, decimal points and signs. Do you want to keep them as ASCII characters or do you want to convert them to numeric data types (e.g. DBL or I32).
Why don't you attach a sample text file and tell us what you want. It is always easier to have an example.
05-11-2005 08:56 PM
05-11-2005
09:09 PM
- last edited on
04-06-2025
07:15 PM
by
Content Cleaner
OK, if this is really a MS Word document, it will be a little more complicated. A word document is in a proprietary format and contains a lot of other information not relevant to your problem (open it in notepad to see ;)).
You will not easily be able to read a word document with the simple file IO Vis and make sense of the data.
Some possible solutions:
05-11-2005 09:32 PM