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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:05:59+00:00 2026-05-24T07:05:59+00:00

I have a datagridview that has 2 columns and a MatchCollection that I will

  • 0

I have a datagridview that has 2 columns and a MatchCollection that I will be using to fill the datagrid. How can i insert into the datagrid for the first column the first match in matchcollection then for the second column the second value of matchcollection. It will then create a new row and start again.

No data is bound to this gridview and I need to ensure that the matchCollection that is being inserted into the datagrid does not overwrite anything else in the table. How can i do this?

This is done in forms application not asp.net

 while (!sr.EndOfStream)
                    {
                        string line = sr.ReadLine();
                        line = line.Trim();
                        if (line.StartsWith("addTestingPageContentText"))
                        {
                            string temp;
                            string pattern = "\"([^\"]+)\"";
                            Regex r = new Regex(pattern);
                            MatchCollection regs = r.Matches(line);

                            foreach (Match reg in regs)
                            {

                                temp = reg.ToString();
                                temp = temp.Replace("\"", "");

                               int rowCount = contentTable_grd.Rows.Count - 1;


                        if (contentTable_grd.Rows[rowCount].Cells[0].Value == null)
                            contentTable_grd.Rows[rowCount].Cells[0].Value = temp;
                        else
                            contentTable_grd.Rows[rowCount].Cells[1].Value = temp;


                        contentTable_grd.Rows.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-24T07:05:59+00:00Added an answer on May 24, 2026 at 7:05 am

    try this

    while (!sr.EndOfStream)
                {
                    string line = sr.ReadLine();
                    line = line.Trim();
                    if (line.StartsWith("addTestingPageContentText"))
                    {
                        string temp;
                        string pattern = "\"([^\"]+)\"";
                        Regex r = new Regex(pattern);
                        MatchCollection regs = r.Matches(line);
    
    
                        object[] array1 = new object[2];                    
    
    
    
                        foreach (Match reg in regs)
                        {
    
                            temp = reg.ToString();
                            temp = temp.Replace("\"", "");
    
                            if (array1[0] == null)
                                array1[0] = temp;
                            else
                                array1[1] = temp;
                        }
    
                        if (regs.Count > 0)
                            contentTable_grd.Rows.Add(array1);
                    }
                }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataGridView that's bound to a DataSet. It has columns DateCreated, Weight,
I have a DataGridView bound to a DataTable that has 1+16 columns defined as
I have a form created which an unbound datagridview that has three columns. Position,
I have a DataGridView that has three read only columns in it and one
I have a dataGridView that has a column with checkboxes. Whenever the user clicks
I have a Winforms app that has a DataGridView that is databound at runtime.
I have a DataGridView in a Winforms app that has about 1000 rows (unbound)
I have a windows form that has two DataGridViews (DGVs) that will hold 25,000+
I have a DataGridView which has different rows and columns and it work perfectly
I have a Winform DataGridView , which has a number of predefined columns. Now

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.