nothing fancy here, we're just doing a regex replace on \r and replacing it with nothing. this is a different way of doing the same thing dennis already posted here . =P using System.IO; using System.Text.RegularExpressions; namespace StripCR { class Program { static void Main( string [] args) { nocr...