Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6653671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:17:55+00:00 2026-05-26T01:17:55+00:00

First post ever so please forgive if I am out of line. StreamWriter noteswriter

  • 0

First post ever so please forgive if I am out of line.

StreamWriter noteswriter = new StreamWriter(directoryPath + "\\" + "Notes.CSV");

var NotesQuery =
    from w in
        (from line in BillSummaryQuery1
         let linerecord2 = line.Split(',').ToList()
         where linerecord2[0] == "RB" && linerecord2[1] == "MICA" && linerecord2[6].Trim() == "1" && linerecord2[7].Trim() == "H" && linerecord2[9].Trim() == "D" && Regex.IsMatch(linerecord2[10].Substring(4, 1), @"^[a-zA-Z0-9]*$") && linerecord2[10].Substring(2, 1) == " "
         select string.Concat(linerecord2[2], ",", linerecord2[3], ",", linerecord2[10].Trim())
         )
    let lineorder3 = w.Split(',').ToList()
    select new
    {
        colA = lineorder3[0],
        colB = lineorder3[1],
        colC = lineorder3[2]
    };

var NotesQuery1 =
from w in NotesQuery
    group w by new { w.colA, w.colB, w.colC } into g
    select new
    {
        colA = g.Key.colA, 
        colB = g.Key.colB, 
        colC = g.Key.colC
    };

foreach (var item in NotesQuery1)
{
    noteswriter.WriteLine(item);
    toolStripProgressBar1.ProgressBar.PerformStep();
}

noteswriter.Dispose();
noteswriter.Close();

This gives me an output such as:

{colA = AccountA,colB = Number1,colC = AccountA }

{colA = AccountA,colB = Number1,colC = AccountHolderA }

{colA = AccountA,colB = Number1,colC = Address1 }

{colA = AccountA,colB = Number1,colC = Address2 }

{colA = AccountB,colB = Number2,colC = AccountA }

{colA = AccountB,colB = Number2,colC = AccountHolderB }

{colA = AccountB,colB = Number2,colC = Address1 }

I don’t know how to get the CSV file to be written as:

AccountA,Number1,AccountA,AccountHolderA,Address1,Address2

AccountB,Number2,AccountA,AccountHolderB,Address

Any suggestion will be greatly appreciated. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:17:56+00:00Added an answer on May 26, 2026 at 1:17 am

    Try this:

    var NotesQuery =
        from line in BillSummaryQuery1
        let linerecord2 = line.Split(',')
        where linerecord2[0] == "RB"
        where linerecord2[1] == "MICA"
        where linerecord2[6].Trim() == "1"
        where linerecord2[7].Trim() == "H"
        where linerecord2[9].Trim() == "D"
        where Regex.IsMatch(linerecord2[10].Substring(4, 1), @"^[a-zA-Z0-9]*$")
        where linerecord2[10].Substring(2, 1) == " "
        group linerecord2[10].Trim() by new
        {
            A = linerecord2[2],
            B = linerecord2[3],
        } into g
        select String.Join(",", (new []
        {
            g.Key.A,
            g.Key.B,
        }).Concat(g.Distinct()).ToArray());
    
    foreach (var item in NotesQuery)
    {
        noteswriter.WriteLine(item);
        toolStripProgressBar1.ProgressBar.PerformStep();
    }
    

    EDIT: Here’s how to make the number of columns equal.

    var NotesQuery =
        (from line in BillSummaryQuery1
        let linerecord2 = line.Split(',')
        where linerecord2[0] == "RB"
        where linerecord2[1] == "MICA"
        where linerecord2[6].Trim() == "1"
        where linerecord2[7].Trim() == "H"
        where linerecord2[9].Trim() == "D"
        where Regex.IsMatch(linerecord2[10].Substring(4, 1), @"^[a-zA-Z0-9]*$")
        where linerecord2[10].Substring(2, 1) == " "
        group linerecord2[10].Trim() by new
        {
            A = linerecord2[2],
            B = linerecord2[3],
        } into g
        select new
        {
            g.Key.A,
            g.Key.B,
            Cs = g.Distinct().ToArray()
        }).ToArray();
    
    var max = NotesQuery.Max(nq => nq.Cs.Length);
    
    var padding = from n in Enumerable.Range(0, max) select "";
    
    var NotesQuery2 =
        from nq in NotesQuery
        select String.Join(",", (new []
        {
            nq.A,
            nq.B,
        }).Concat(nq.Cs).Concat(padding).Take(max + 2).ToArray());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm new to this kind of things. Kinda the first post ever regarding programming,
first post here ever so forgive me if I am totally ignorant of all
Just starting out with shopfiy and this is my first ever stack post! I'm
This is my first post in this forum, so please, be patient with me.
This is my first post on stackoverflow, so please excuse me if my question
Original Question: This is my first post ever. I'm trying to learn ios programming
this is my first ever post here. I'm not sure if I've done the
first post ever here I'm trying to replicate this sort of JSON object so
first post ever in any forum with regard to programming... i usually just search
This is my first post ever :). I have quite a bit of experience

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.