A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C# program to split a string using the Split() method of String class
Q:

C# program to split a string using the Split() method of String class

0

C# program to split a string using the Split() method of String class

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to spilt a string using the Split() method of String class in C# is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to spit a string using 
//Spilt() method of String class.

using System;

class SplitDemo
{
    static void Main(string[] args)
    {
        string[] strArr;
        string countries = "India#Australia#USA";
        char[] spearator = { '#' };

        strArr = countries.Split(spearator);

        Console.WriteLine("List of countries: ");
        foreach (string country in strArr)
        {
            Console.WriteLine("\t"+country);
        }
    }
}

Output:

List of countries:
        India
        Australia
        USA
Press any key to continue . . .

Explanation:

Here, we created a class SplitDemo that contains the Main() method. The Main() method is the entry point of the program. Here we declared a string countries that contains names of countries separated by #, then we split the string using the Split() method based on the separator #. The Split() method returns the array of strings. After that, we printed each string using the "foreach" loop on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now