vote up 1 vote down star

I have some code:

 public static void ReadTextFile()
    {
        string line;

        // Read the file and display it line by line.
        using (StreamReader file = new StreamReader(@"C:\Documents and Settings\Administrator\Desktop\snpprivatesellerlist.txt"))
        {
            while ((line = file.ReadLine()) != null)
            {

                char[] delimiters = new char[] { '\t' };
                string[] parts = line.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);
                for (int i = 0; i < parts.Length; i++)
                {

                     Console.WriteLine(parts[i]);
                     sepList.Add(parts[i]);

                }

            }

            file.Close();
        }
        // Suspend the screen.
        Console.ReadLine();     
    }

It reads in a text file that contains data delimited by tabs and splits the data into separate words.

The problem I have is that once the data has been separated, it still has massive amounts of white space on the left and right sides on random strings in the list (Infact most of them do). I can't trim the string because it only removes white space, and technically this isn't white space.

Anyone got any ideas on how to get round this problem!?

flag

51% accept rate
I'm confused - you say it has massive amounts of whitepace, but then you also say that trim won't work because it isn't whitespace? – Eric Petroelje Jun 22 at 16:40
Can you double check what these whitespace chars are? I don't believe it's possible that they're actually tabs, from the code you've posted. – Noldorin Jun 22 at 16:40
What exactly are these amounts of white space, but not technically white space? – Groo Jun 22 at 16:41
(as a side note) You can omit file.Close() in a using construct (StreamReader.Dispose calls Close by itself). – Groo Jun 22 at 16:44
basically once that code is run, i end up with a generic list of individual words - however the words have massive spaces after them and occasionally before........ – Goober Jun 22 at 16:55

2 Answers

vote up 3 vote down check

The problem I have is that once the data has been separated, it still has massive amounts of white space on the left and right sides on random strings in the list (Infact most of them do). I can't trim the string because it only removes white space, and technically this isn't white space.

It sounds like you have non-tab whitespace characters in your string, as well as being tab delimited.

Using String.Trim should work fine to remove these extra characters. If, for some reason, doing String.Trim on each word is not working, you'll need to switch to find out what the extra "characters" are comprised of, and using this overload of String.Trim.

link|flag
Thankyou - help greatly appreciated! – Goober Jun 22 at 16:58
vote up 1 vote down

You have white space/tabs like this? "    Hello " ?

Trim remove white spaces and tabs too

link|flag

Your Answer

Get an OpenID
or

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