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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:19:36+00:00 2026-05-25T23:19:36+00:00

I have a large string in the form of a query, like for example:

  • 0

I have a large string in the form of a query, like for example:
“SELECT column_name1, column_name2, column_name3, column_name4 FROM table1 JOIN table2 ON table1.field1 = table2.field1” (the original query will have about 30 column names from joins of about 6-8 tables)

Now I just want the column names from this string. How can I achieve that?

Thank you 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-05-25T23:19:36+00:00Added an answer on May 25, 2026 at 11:19 pm

    There are a number of ways including LINQ and RegEx but here’s a process that uses string’s Split function. Do note that this loop assumes that the column names will be pretty monotonic and will not assume special cases such as commas or spaces in column names.

    using System;
    using System.Collections.Generic;
    
    public class MyClass
    {
        public static void Main()
        {
            List<string> columns = new List<string>(); // columns collection
    
            string sql = "SELECT column_name1, column_name2, column_name3, column_name4 FROM table1 JOIN table2 ON table1.field1 = table2.field1";
            string[] parts = sql.Split(new char[] {' ', ','}, StringSplitOptions.RemoveEmptyEntries);
    
            for (int i=1; i<parts.Length; i++)
            {
                if (parts[i].Equals("FROM")) break;
    
                columns.Add(parts[i]); // add cols to collection
            }
    
            foreach(string column in columns)
                Console.WriteLine(column); // print out the columns
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a arbitrarily large string of text from the user that needs to
I have a form field that accepts large text from users. It is basically
I have a large string, similar to this one: BREW pot HTCPCP/1.0 Accept-Additions: #milk;3#whiskey;splash
I have a large string I need to parse, and I need to find
I have a large file(60mb) and I am reading the file into a string
I have this string containing a large chunk of html and am trying to
Suppose I have a large number of strings formatted something like: <tag>blah blahXXXXXblah blah</tag>
I have a Spring Web MVC application that I'd like to serve a large,
I have large text in System.Windows.Forms.TextBox control in my form (winforms), vs 2008. I
I have a large file with numbers in the form of 6,52353753563E-7 . So

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.