Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the image below I need to extract the data between the two red lines. This data also needs to be used in a foreach loop as there is more than one table in each file: enter image description here

I have tried using a Substring but the character underneath the second line prevents me as it cannot be referenced in c#

This is a Purchase Order for a Company and I need to read the 1st column as the Key, the RecNum as Number, the Pos as firstPos, the width as Width, the Datatype, the Code and Qual together as qualifier. then also a secondpos as firstpos + width. The file comes in like this and the program that im making will create an xml file.

The XML file is already working perfectly with another program that uses the same XML serializer i just need to get the data into lists.

share|improve this question
code please............ – andy Jan 21 at 11:25
1  
Could you please provide some code examples and go deeper into the context of a problem? Thus, we would have more details to give a better, coherent answer to your question. – Ilya Ivanov Jan 21 at 11:26
Your source file appears to be what is called fixed width. See this question, and this answer to make your life easier - stackoverflow.com/a/162909/1073107 Given your file is fixed width, you could actually just parse it line-by-line using absolute values for the substring argument, but why bother when there are perfectly good parsers out there like FileHelpers which will make this task easy. – dash Jan 21 at 11:27
What are the separators? Spaces, tabs or both? – Sebastian Negraszus Jan 21 at 11:34
added a bit more info – Chris-NetEDI Jan 21 at 11:40

2 Answers

up vote 0 down vote accepted

With LINQ:

var report = File.ReadLines(pathToFile)
        .SkipWhile(l => !l.StartsWith(" -----------------"))
        .Skip(1) // we want to start with the next line 
        .TakeWhile(l => !l.StartsWith("\f                 "));

foreach(string line in report)
{
    // ...
}

( since you've provided the file, i've noticed that the end character is the form feed \f )

share|improve this answer
This didnt seem to work it starts far down the file and doesnt skip the bit between the strange character and the --- – Chris-NetEDI Jan 21 at 11:58
@Chris-NetEDI: It's difficult to read the screenshot. Maybe the first line does not start with whitespace+"--------" but just with "--------". – Tim Schmelter Jan 21 at 12:04
It does start wit the whitespace, it isnt catching the character at the end, here is the actual txt file: link – Chris-NetEDI Jan 21 at 12:33
@Chris-NetEDI: Downloaded your file and tested. You need to look for \f. Edited my answer (should work). – Tim Schmelter Jan 21 at 12:41
ok that seems to work for cutting the right part if the file, I just need to loop it properly now so that it will carry on searching as there are more tables in the same file. – Chris-NetEDI Jan 21 at 12:52

In addition to what Tim has said, you can also consider using LINQ with Regular Expressions.

Example:

using System.Linq;
using System.Text.RegularExpressions;
...

Regex regex = 
    new Regex(@"^\s\w+(\s+\d+)?(\s+\d+)?(\s+\d+)?\s+\w+(\s+\d+)?(\s+\d+)?(\s+\w+)?(\s+\w+)?$");

var lines = File.ReadLines(@"_path_to_your_file_")
    .Where(line => regex.IsMatch(line));

foreach (var line in lines)
{
    // process your file e.g. Console.WriteLine(line);
}

That solution, however, will include all lines matching the given regular expression from the file (in all report pages; based on the file you provided).

If you would like to get lines from the first report page only, you would have to add some additional conditions to the LINQ e.g. take first 43 lines (please note that Take should be after Where condition), but that approach is not very reliable as number of "matching" lines can change in a page from report to report. .

var lines = File.ReadLines(@"_path_to_your_file_")
        .Where(line => regex.IsMatch(line))
        .Take(43);

With the regular expression approach you will also have very easy access to line components like Interface Column or Ext Table etc. by taking values of regular expressions groups.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.