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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T01:10:15+00:00 2026-06-09T01:10:15+00:00

How can I parse the following string of name-value pair in C#: string studentDetail

  • 0

How can I parse the following string of name-value pair in C#:

string studentDetail = "StudentId=J1123,FirstName=Jack,LastName=Welch,StudentId=k3342,FirstName=Steve,LastName=Smith"

The purpose of parsing this array is to insert values in DB using Linq to SQL:

[HttpPost]
public ActionResult SaveStudent(string studentDetail)
{
    DataContext db = new DataContext();         

    Student student = new Student();
    {
        student.StudentID = //StudentID
        student.FirstName = //FirstName
        student.LastName = //LastName
    };

    db.Student.InsertOnSubmit(student);
    db.SubmitChanges();

    return View();
}

What is the best way of approaching this?

  • 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-09T01:10:17+00:00Added an answer on June 9, 2026 at 1:10 am

    You can split on the comma, then on the equals sign. I put the data into a dictionary for easy access.

    string input = "StudentId=J1123,FirstName=Jack,LastName=Welch";
    
    Dictionary<string,string> keyValuePairs = input.Split(',')
      .Select(value => value.Split('='))
      .ToDictionary(pair => pair[0], pair => pair[1]);
    
    string studentId = keyValuePairs["StudentId"];
    

    Note that this isn’t validating the input at all to ensure that there are no commas in values, no keys without values, missing keys, etc.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I parse an XML document like this: <feed> <item> <element-name>Element value</element-name> </item>
how can i parse the particular 'li' field from the following using jquery template?
I have the following language i wish to parse using antlr 1.2.2. TEST <name>
Given the following string, I'd like to parse into a list of first names
I have an xml like the following: <NewDataSet> <Person> <FirstName>abc</FirstName> <LastName>xyz</LastName> <Address>12345abc</Address> </Person> <Person>
How i can parse and extract the parameters from an SQL Query using delphi?
Is there a Python library that can parse an CSS selector and emit an
Does anybody know a Perl library that can parse XML documents and enables me
Does a tool exist that can parse text and output that text, hyper-linked to
I need a PHP Regex that can parse .strings files. In particular, it needs

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.