How to split a string into lines with Regex in C#

3 Answers

0 votes
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "c\r\nc++\r\ncsharp\r\njava\r\npython and php";

            string[] lines = Regex.Split(s, "\r\n");

            foreach (string line in lines) {
                Console.WriteLine(line);
            }
        }
    }
}


/*
run:

c
c++
csharp
java
python and php
 
*/

 



answered Aug 7, 2018 by avibootz
0 votes
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "c\r\nc++\r\ncsharp\r\njava\r\npython and php";

            char[] delimiters = new char[] { '\r', '\n' };

            string[] lines = s.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);

            foreach (string line in lines) {
                Console.WriteLine(line);
            }
        }
    }
}


/*
run:

c
c++
csharp
java
python and php
 
*/

 



answered Aug 8, 2018 by avibootz
0 votes
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "c\r\nc++\r\ncsharp\r\njava\r\npython and php";

            string[] lines = s.Split(new string[] { "\r\n" }, StringSplitOptions.None);

            foreach (string line in lines) {
                Console.WriteLine(line);
            }
        }
    }
}


/*
run:

c
c++
csharp
java
python and php
 
*/

 



answered Aug 8, 2018 by avibootz

Related questions

...