Answers for "c# replace crlf"

C#
0

c# replace crlf

// Remove all newlines from the 'example' string variable
string cleaned = example.Replace("\n", "").Replace("\r", "");
Posted by: Guest on August-04-2020

Code answers related to "c# replace crlf"

C# Answers by Framework

Browse Popular Code Answers by Language