Split a string delimited by characters and return all elements in CSharp

Description

The following code shows how to split a string delimited by characters and return all elements.

Example


  /*from w  w  w .ja  va 2s.c  o m*/
  
  
     
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);
        }
    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    Data Types »




C# Data Types
Bool
Byte
Char
Decimal
Double
Float
Integer
Long
Short
String
C# Array
Array Example
Byte Array
C# Standard Data Type Format
BigInteger
Complex
Currency
DateTime
DateTimeOffset
DateTime Format Parse Convert
TimeSpan
TimeZone
Enum
Null
tuple
var