use the Split() method to split strings : String Split : Data Types C# Source Code


Custom Search

C# Source Code » Data Types » String Split »

 

use the Split() method to split strings








    
 
using System;

class MainClass {

    public static void Main() {
        string[] myStrings = {"To", "be", "or", "not","to", "be"};
        string myString9 = String.Join(".", myStrings);
        myStrings = myString9.Split('.');
        foreach (string mySplitString in myStrings) {
            Console.WriteLine("mySplitString = " + mySplitString);
        }
    
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Data Types
» String Split