Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
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
Advertisements