C# Program to split a string on spaces


Firstly, set a string −

string str = "Science and Mathematics";

Now use the Split() method to split wherever the spaces occur −

str.Split(' ')

The following is the complete code −

Example

 Live Demo

using System;
using System.Linq;
using System.IO;
class Program {
   static void Main() {
      string str = "Science and Mathematics";
      Console.WriteLine("String...
"+str);       string[] myStr = str.Split(' ');       Console.WriteLine("
Splitted String...");       foreach (string ch in myStr) {          Console.WriteLine(ch);       }    } }

Output

String...
Science and Mathematics

Splitted String...
Science
and
Mathematics

Updated on: 22-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements