J
Julie
I currently use the following to remove embedded spaces from strings:
dest = str.Replace(" ", "");
and resort to something like the following to remove white space:
dest = str.Replace(" ", "").Replace("\t", "").etc.;
Is there a better, more efficient way?
dest = str.Replace(" ", "");
and resort to something like the following to remove white space:
dest = str.Replace(" ", "").Replace("\t", "").etc.;
Is there a better, more efficient way?