
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
Split String with a Delimiter in C#
Delimiters are the commas that you can see in the below string.
string str = "Welcome,to,New York";
Now set the delimiter separately.
char[] newDelimiter = new char[] { ',' };
Use theSplit() method to split the string considering the delimiter as the parameter.
str.Split(newDelimiter, StringSplitOptions.None);
To split a string with a string deli meter, try to run the following code −
Example
using System; class Program { static void Main() { string str = "Welcome,to,New York"; char[] newDelimiter = new char[] { ',' }; string[] arr = str.Split(newDelimiter, StringSplitOptions.None); foreach (string val in arr) { Console.WriteLine(val); } } }
Output
Welcome to New York
Advertisements