Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,999 questions

51,944 answers

573 users

How to remove "\r\n\t" from a string in C#

2 Answers

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

class Program
{
    static void Main() {
        string s = "vb.net \r\n javascript php \r\n c \t\t c++ python \r\n c#";
        
        s = s.Replace("\n", String.Empty);
        s = s.Replace("\r", String.Empty);
        s = s.Replace("\t", String.Empty);
        
        Console.Write(s);
    }
}



/*
run:

vb.net  javascript php  c  c++ python  c#

*/

 



answered Sep 10, 2019 by avibootz
0 votes
using System;
using System.Text.RegularExpressions;

class Program
{
    static void Main() {
        string s = "vb.net \r\n javascript php \r\n c \t\t c++ python \r\n c#";
        
        s = s.Replace("\n", String.Empty);
        s = s.Replace("\r", String.Empty);
        s = s.Replace("\t", String.Empty);
        
        s = Regex.Replace(s, " {2,}", " ");
        s = s.Trim();
        
        Console.Write(s);
    }
}



/*
run:

vb.net javascript php c c++ python c#

*/

 



answered Sep 10, 2019 by avibootz

Related questions

2 answers 178 views
178 views asked Jun 24, 2020 by avibootz
2 answers 212 views
2 answers 181 views
181 views asked Jun 24, 2020 by avibootz
2 answers 203 views
...