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
using System;
using System.Linq;
using System.IO;
class Program {
static void Main() {
string str = "Science and Mathematics";
Console.WriteLine("String...\n"+str);
string[] myStr = str.Split(' ');
Console.WriteLine("\nSplitted String...");
foreach (string ch in myStr) {
Console.WriteLine(ch);
}
}
}Output
String... Science and Mathematics Splitted String... Science and Mathematics