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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:16:00+00:00 2026-05-17T19:16:00+00:00

I have an array/list/collection/etc of objects. For sample purposes, lets assume it is just

  • 0

I have an array/list/collection/etc of objects. For sample purposes, lets assume it is just a string array/list/collection/etc.

I want to iterate through the array and split certain elements based on certain criteria. This is all handled by my object. So once I have the object index that I want to split, what is the standard way of splitting the object and then reinserting it back into the original array in order. I’ll try and demonstrate what I mean using a string array:

string[] str = { "this is an element", "this is another|element", "and the last element"};
List<string> new = new List<string>();

for (int i = 0; i < str.Length; i++)
{
    if (str[i].Contains("|")
    {
          new.AddRange(str[i].Split("|"));
    }
    else
    {
          new.Add(str[i]); 
    }
}

//new = { "this is an element", "this is another", "element", "and the last element"};

This code works and everything, but is there a better way to do this? Is there a known design pattern for this; for like an inplace array split?

  • 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-17T19:16:00+00:00Added an answer on May 17, 2026 at 7:16 pm

    For this particular example, you could utilize SelectMany to get your new array.

    string[] array = { "this is an element", "this is another|element", "and the last element" };
    string[] newArray = array.SelectMany(s => s.Split('|')).ToArray();
    // or List<string> newList = array.SelectMany(s => s.Split('|')).ToList();
    // or IEnumerable<string> projection = array.SelectMany(s => s.Split('|'));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a collection (be it an array, generic List, or whatever is
I have an array which is a list of domains, I want to print
Closed as exact duplicate of this question . I have an array/list of elements.
I have an array that contains a list of vertices which I copy to
I have an ArrayList<String> , and I want to remove repeated strings from it.
I have a collection of objects in a database. Images in a photo gallery,
In Java, say you have a class that wraps an ArrayList (or any collection)
I have an ArrayList<String> that I'd like to return a copy of. ArrayList has
I have some data stored as ArrayList . And when I want to backup
Is it possible to pass a collection of objects to a RIA Data Service

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.