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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T22:22:35+00:00 2026-06-16T22:22:35+00:00

I have a text file that looks like this and I’m splitting at each

  • 0

I have a text file that looks like this and I’m splitting at each ‘|’.
In between the 3rd ‘|’ is two words that I need to split into two separate columns. Having trouble doing the split.

 Nbr| Address| Name   |Phone|City|State|Zip 
455 |gsgdgsg |fir last|434  |jk  |jh   |0393

I have something like this that is doing the split and writing the output to a list. Currently I can do the split and select the first part fine but when i do the split and select the second part I get index out of bounds of array error.

var Names = File
            .ReadAllLines(path)
            .Select(a => a.Split(new[] { '|' }, StringSplitOptions.None))
            .Select(a => new {
                phoneNbr = a[0].Trim(),
                Name = a[2].Trim().Split(' ')[0],
                Name2 = a[2].Trim().Split(' ')[1], //gives me error I think becuase it already split it
                addr = a[1].Trim()
            })
              .ToList(); 
  • 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-16T22:22:37+00:00Added an answer on June 16, 2026 at 10:22 pm

    You probably do not have two words in column three with index 2 with some record. You need to enusure you get two elements after split before using second element.

    Change

    Name2 = a[2].Trim().Split(' ')[1]
    

    To

    Name2 = a[2].Trim().Split(' ').Length > 1 ? a[2].Trim().Split(' ')[1] : ""
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file that looks like this. A 102 B 456 C
I have a text file that looks like this: value1 value2 value3 There are
I have a text file that looks like this: Id:001;status:open;Id:002;status:open;Id:003;status:closed; Id:004;status:open;Id:005;status:closed;Id:006;status:open; .... .... Here
I have a text file that looks like this: 1,Smith, 249.24, 6/10/2010 2,Johnson, 1332.23,
I have a text file that looks like this: [22/Nov/2011 12:57:58] GET /media/js/jquery-1.4.3.min.js HTTP/1.1
I have a text file (bowtie alignment file) that looks like this: read_1 +
So I have a a text file that looks something like this: public >ret
I have a text file that looks like this: i 3755 i 3633 i
I have a text file that looks like this: BALLOTS CAST Riding 0 YES
I have a text file that looks like this 1 2 3 4 5

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.