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

Is there a way to substring by the string line? Someting like: String.substring(line_num); Or
I hava a class like this: public class tbl050701_1391_Fields { public static readonly string
I hava a binary file like this : offset | size/type | Description -------+-----------+-----------------------------------------------------------
i hava a c++ method(for java,jni) like follow,when i repeat call this from java
I hava text file full of values like this: The first line is a
I hava a data structure that looks like this: (def conf { :devices [{:alias
How I can set value of string[] property in xaml? I hava control with
I hava a jar with a main file like this: public class StartMesekocka3D {
I hava a class called DBhelper, and now I created a new class called
i hava made a select box of skills..there are skills listed in it.. if

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.