I am retrieving data from a DB table using SqlDataReader in ASP.net. I append the retrieved data in a string builder and after that, dump the contents of the string builder into a text file. My problem is that in that text file white spaces are showing up between one column and another ... How can I remove the excess white spaces from my text file?

Thanks in advance.

link|improve this question

0% accept rate
text.Replce(' ','')? – Prescott Feb 24 at 4:36
add the code here, what you have written – Maheep Feb 24 at 4:39
feedback

2 Answers

1. Text.Trim();
2. Text.Replace(" ", string.empty);
link|improve this answer
feedback
private string process(string s)
    {
        int len = s.Length;
        int current=0;
        StringBuilder sb = new StringBuilder(len);

        while (current < len-1)
        {
            if (!(s[current] == ' ' && s[current + 1] == ' ') &&
                !(s[current] == '\n' && s[current + 1] == '\n') 
                )
            {
                sb.Append(s[current]);
            }
            current++;
        }
        return sb.ToString();

    } 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.