Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Split a string in C#

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 319
    Comment on it

    How to split a string

    Suppose I have a string "I love Programming" and I want to get all the words seprately. Here is a simple example:-

    string a = "I love Programming";
    string[] words = a.Split(' ');
    //  We pass the value inside '' on the basis of which we want to split the words. Here I have used space
        foreach (string word in words)
        {
            Console.WriteLine(word);
        }
                               OR
    // to get the third word use
    string b = words[2];
    // b will give "Programming"

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: