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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:02:14+00:00 2026-05-12T14:02:14+00:00

I have a set of values based on which i have split the string

  • 0

I have a set of values based on which i have split the string

string[] seperator = new string[9];
        seperator[0] = "*";  //is the client
        seperator[1] = "/";  //is the name of company
        seperator[2] = "(";     //name of the market    
        seperator[5] = ":";    //ID
        seperator[6] = "?";    //orderType
        seperator[3] = "!@";   //realtive Time
        seperator[4] = "!+";   //
        seperator[7] = "+";    //quantity
        seperator[8] = "@";//price
string[] result = values.Split(seperator, StringSplitOptions.None);

For example: The input string is
*A/AB(M!@12:6?SIMPLE!+5+2

OUTPUT
    [0]: ""
    [1]: "A"
    [2]: "AB"
    [3]: "M"
    [4]: "12"
    [5]: "6"
    [6]: "SIMPLE"
    [7]: "5"
    [8]: "2"

For example: The input string is
*A(M!@12?SIMPLE!+5+2/AB:6

OUTPUT:
    [0]: ""
    [1]: "A"
    [2]: "M"
    [3]: "12"
    [4]: "SIMPLE"
    [5]: "5"
    [6]: "2"
    [7]: "AB"
    [8]: "6"

The problem I am facing is : how can I relate that A is the client, AB is the company..etc etc

as the order in which the user can enter this information RANDOM…
If he doesnot enter any one of these values, it changes the result length ?

  • 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-12T14:02:15+00:00Added an answer on May 12, 2026 at 2:02 pm

    Using something like this

    SortedList<int, string> list = new SortedList<int, string>();
                string[] seperator = new string[9];
                seperator[0] = "*";  //is the client
                seperator[1] = "/";  //is the name of company
                seperator[2] = "(";     //name of the market    
                seperator[5] = ":";    //ID
                seperator[6] = "?";    //orderType
                seperator[3] = "!@";   //realtive Time
                seperator[4] = "!+";   //
                seperator[7] = "+";    //quantity
                seperator[8] = "@";//price
                string val = "*A/AB(M!@12:6?SIMPLE!+5+2";
    
                for (int iSep = 0; iSep < seperator.Length; iSep++)
                    list.Add(val.IndexOf(seperator[iSep]), val);
    

    will give you a list of positions where the seperators start, in any order the user inputs, and then you can use substring to retrieve the values

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a large set of values V, some of which are likely to
I have set up an update query which will update values entered into text
I have a set of X,Y,Z values on a regular spaced grid from which
I have a set of values that I'm pushing into an array in the
public void test(Object obj){ //Here i have to set the values of the obj
I have a set of experimental values. For instance, I have a value of
I have a set of three double values as part of an anonymous expression
Suppose we have a set x of N values {x_i; i=1,...,N} and a set
I have a dropdownlist with values -1,1,2 and text A,B,C i wanna set B
I have a collection of StackPanel which each one includes a dynamic set of

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.