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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:54:22+00:00 2026-05-27T23:54:22+00:00

I hava a string like this: var id = 01020304; Is there a simple

  • 0

I hava a string like this:

var id = "01020304";

Is there a simple way I can split this into four variables called pr, pa, fo, it Each variable needs to have the two characters of the string. Looking for an elegant solution if it exists.

  • 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-27T23:54:23+00:00Added an answer on May 27, 2026 at 11:54 pm

    Since you have four distinct variables, you can’t get much more elegant than using Substring:

    var pr = id.Substring(0, 2);
    var pa = id.Substring(2, 2);
    var fo = id.Substring(4, 2);
    var it = id.Substring(6);
    

    Were you looking for an array of four 2-character substrings, you could get fancier:

    var parts = new string[4];
    for (int i = 0 ; i != parts.Length ; i ++) {
        parts[i] = id.Substring(2*i, 2);
    }
    

    EDIT: The same can be done with a LINQ expression:

    var parts = Enumerable
        .Range(0, id.Length/2)
        .Select(i => x.Substring(2*i, 2))
        .ToArray();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hava a java program, a section of it is compute intensive, like this
How I can set value of string[] property in xaml? I hava control with
hi i hav a code like this in the end i m getting error
I hava an ArrayList of String values (they need to be formatted as such)
I hava a perl subroutine where i would like to pass parameters as a
I'd like to hava a Dojo dojox.grid.DataGrid with its data from a servlet. Problem:
I'm borrowing the slice meaning from C++. Let's say I hava a simple POJO
I hava a xml doc (and complex element) that is similar to this example:
I hava a generic class called ArrayBag. I want to override equals method. So
I hava an unordered List navigation and i wanted to transform this to JSF

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.