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 8627965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T08:24:52+00:00 2026-06-12T08:24:52+00:00

Hy my Friends :) So i have a litte problem, i have a Text

  • 0

Hy my Friends 🙂

So i have a litte problem, i have a Text File with following content
This i from an email Script.

Email: usera@hotmail.com
Status: done
Lang: En
Date: 05-10-2012
--------------------------------
Email: userb@hotmail.com
Status: waiting
Lang: En
Date: 05-10-2012

Ok now i will read this text file and write Only the Email and Status in a Richtextbox.
Like this

usera@hotmail.com;done
userb@hotmail.com;waiting

Only the status and the email should be in the Richtextbox sepperated with the “;”
The other text ( Lang , Date) can be Ignored.

My idea was Read the text file in a stream and try with a Foreach fuc to find “Email” and “Status” then print in the Richbox, but i think this is not a good way to do this.
So i ask you what is the best way to make this possible?

my test code

string[] filea = File.ReadAllLines("test.txt");
        foreach (var s in filea)
        {
            if (s.Contains("Email"))
            {

              richTextBox1.AppendText(s + Environment.NewLine);
           }

        }

but how i get in there the “Status” too?
Thanks in Advance 🙂

  • 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-06-12T08:24:53+00:00Added an answer on June 12, 2026 at 8:24 am

    To get the requested output, you’ll need to split each line and then grab just the part you want:

    string[] filea = File.ReadAllLines("test.txt");
    foreach (var s in filea)
    {
        string[] parts = s.Split(':');
    
        if (parts.Length == 2)
        {
            if (parts[0].Contains("Email"))
                richTextBox1.AppendText(parts[1].Trim());
    
            if (parts[0].Contains("Status"))
                richTextBox1.AppendText(":" + parts[1].Trim() + Environment.NewLine);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following friends = [{ name: Jack, attr1:def, attr2:def }, { name:
I have a table called 'friends', this contains the columns person1 and person2 .
I have a table named friends with following structure: id, from_id, to_id, confirmed, ....
friends. I have a 'make'-like style file needed to be parsed. The grammar is
I have a Friendship model which looks like this: from_user = ForeignKey(User, related_name='friends') to_user
I thought this other SO thread would have answered my question (http://stackoverflow.com/questions/4883751/trouble-reading-json-object-in-python), as it
Hello friends I have tried many times but I am not successful than please
I have a friends table with columns user1 and user2 and a users table
I have a working WAMP environment (Apache Friends). I decided to try Subversion and
I have a users table and a friends table. I want to get the

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.