Answers for "c# remove all return and new line characters from a string"

C#
0

c# remove newline from string

// 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# remove all return and new line characters from a string"

C# Answers by Framework

Browse Popular Code Answers by Language