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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:40:38+00:00 2026-05-16T03:40:38+00:00

I separated A320-789-890 according to – and i get a list below: A101C, B7CL,

  • 0

I separated “A320-789-890” according to “-” and i get a list below:

"A101C", "B7CL", "E7CL", "D7CL"

Everything is ok. My result set above it is my solution result. But i have 2 question:

  1. how can I do that with regex?
  2. if I can do that with regex, can I use regex with linq?
  3. which is more effective according to performance like my method below, or regex?

    namespace engRegex1
    {
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

        private void Form1_Load(object sender, EventArgs e)
        {
            Engineering eng = new Engineering();
            string[] engSplitList = new string[eng.engList.Count()];
            List<string> firstitem = new List<string>();
            foreach (string item in eng.engList)
            {
                engSplitList = item.Split('-');
                firstitem.Add(engSplitList[0]);
            }
            foreach (string item in firstitem)
                listBox1.Items.Add(item);
        }
    }
    public class Engineering
    {
        public List<string> engList = new List<string>() { 
            "A101C-234-456", "B7CL-567-789", "E7CL-567-789", "D7CL-567-789" };
    }
    

    }

  • 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-16T03:40:38+00:00Added an answer on May 16, 2026 at 3:40 am

    As long as you need to extract just the first part I’m suggesting IndexOf + Subsstring:

    foreach (string item in eng.engList)
    {
        listBox1.Items.Add(item.Subsstring(0, item.IndexOf('-'));
    }
    

    It would be the fastest (and probably the easiest) way.

    //EDIT
    with LINQ it would something like that:

    listBox1.Items.AddRange(from item in eng.engList select item.Subsstring(0, item.IndexOf('-')));
    

    with RegEX

    foreach (string item in eng.engList)
    {
        listBox1.Items.Add(RegEx.Match(item, "[^-]*").ToString());
    }
    

    with RegEX and LINQ:

    listBox1.Items.AddRange(from item in eng.engList select RegEx.Match(item, "[^-]*").ToString())
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a comma separated list of strings like the one below. a,b ,c
I have a comma separated list of values, and I need to remove the
I have comma separated list of regular expressions: .{8},[0-9],[^0-9A-Za-z ],[A-Z],[a-z] I have done a
I want a comma-separated list of all the email addresses my application stores. It's
I have a comma separated list, and would like to remove the first occurrence
I have two tab separated files (please see the examples below): File 1 Java
Condition I have comma separated list of airway bill numbers in a record in
when binding a comma separated list of id's to my prepared statement i only
I need to get the space-separated tokens in a string, but I also need
I have a space-separated list of coordinate tuples, with arbitrarily many tuples. Each tuple

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.