
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 a String Using Regular Expressions in C#
To split a string suing regular expression, use the Regex.split.
Let’s say our string is −
string str = "Hello\r
World";
Now use Regex.split to split the string as shown below −
tring[] res = Regex.Split(str, "\r
");
The following is the complete code to split a string using Regular Expression in C#.
Example
using System; using System.Text.RegularExpressions; class Demo { static void Main() { string str = "Hello\r
World"; string[] res = Regex.Split(str, "\r
"); foreach (string word in res) { Console.WriteLine(word); } } }
Output
Hello World
Advertisements