Split a string delimited by characters and return all elements

image_pdfimage_print
   
  
using System;
class Sample 
{
    public static void Main() 
    {
       string s1 = ",A,TWO,,,THREE,,";
       char[] charSeparators = new char[] {','};
       string[] result;
        
        result = s1.Split(charSeparators, StringSplitOptions.None);
        Show(result);       
    }
    public static void Show(string[] entries)
    {
        foreach (string entry in entries)
        {
            Console.WriteLine(entry);
        }
    }
}

   
    
     


This entry was posted in Data Types. Bookmark the permalink.