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

  • Home
  • SEARCH
  • 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 4564232
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T18:28:18+00:00 2026-05-21T18:28:18+00:00

I have a text file in which I am storing entries for an address

  • 0

I have a text file in which I am storing entries for an address book.
The layout is like so:

Name:
Contact:
Product:
Quantity:

I have written some linq code to grab the name plus the next four lines, for a search by name feature.
I also want to be able to search by contact.
The challenge is to match the contact info, grab the next 3 lines, and also grab the line prior to the match.
That way if Search By Contact is used, the full list of info will be returned.

  private void buttonSearch_Click(object sender, EventArgs e)
    {
            string[] lines = File.ReadAllLines("C:/AddressBook/Customers.txt");
            string name = textBoxSearchName.Text;
            string contact = textBoxContact.Text;

            if (name == "" && contact == "")
            {
                return;
            }

            var byName = from line in lines
                         where line.Contains(name)
                         select lines.SkipWhile(f => f != line).Take(4);

            //var byContact = from line in lines
            //                where line.Contains(name)
            //                select lines.SkipWhile(f => f != name).Take(4);


            if (name != "")
            {
                foreach (var item in byName)
                    foreach (var line in item) { listBox2.Items.Add(line); }

                listBox2.Items.Add("");
            }

            //if (contact != "")
            //{
            //    foreach (var item in byContact)
            //        foreach (var line in item) { listBox2.Items.Add(line); }

                //listBox2.Items.Add("");
            }
    }
  • 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-21T18:28:19+00:00Added an answer on May 21, 2026 at 6:28 pm

    Firstly i would recommend changing your data storage approach if you can.

    Secondly i would recommend reading the file into an object, something like this:

    public class Contact
    {
    
        public string Name {get; set;}
        public string Contact {get; set;}
        public string Product {get; set;}
        public int Quantity {get; set;}
    }
    ...
    public IEnumerable<Contact> GetContacts()
    {
        //make this read line by line if it is big!
        string[] lines = File.ReadAllLines("C:/AddressBook/Customers.txt");
        for (int i=0;i<lines.length;i += 4)
        {
            //add error handling/validation!
            yield return new Contact()
            {
                  Name = lines[i],
                  Contact = lines[i+1],
                  Product = lines[i+2],
                  Quantity = int.Parse(lines[i+3]
             };
        }
    }
    private void buttonSearch_Click(object sender, EventArgs e)
    {
        ...
        var results = from c in GetContacts()
                     where c.Name == name ||
                           c.Contact == contact
                     select c;
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file which contains something like this: Hello, my name is
i have a text file ... which storing data like.. E:0 S:0 R:0 G:0
I have a text file which I am reading and storing the data in
I have a text file which has a particular line something like sometext sometext
I have an input text file which I am reading and storing everything in
I have a file which contains several text entries, say one two three Now,
I have a text file which contains data seperated by '|'. I need to
I have a text file which I want to filter using awk. The text
I have a text file which needs to be constantly updated (regular intervals). All
I have a text file in which a particular character repeats at the start

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.