How would I replace periods with spaces, but preserve ...?
string test = "This.is.a.test...";
test = test.Replace(".", " ");
How would I replace periods with spaces, but preserve ...?
string test = "This.is.a.test...";
test = test.Replace(".", " ");