Writing into excel spreadsheet

  • Thread starter Thread starter bob
  • Start date Start date
B

bob

My program copys things from a word document and puts
them into an excel spreadsheet. The problem I have
though is these annoying symbols that appear in place of
spaces in the text after Ive put them into the excel file.

here is an example. this is what it looks like in the
word document....

I went to the store.

And bought some fruit.

in the excel...

I went to the store. And bought some fruit.

How do I get rid of those annoying symbols? When i save
the text which is in the word document into a string,
does it automatically put those symbols in?

any suggestions, thanks
 
Bob,

Since I have not seen your code, this is a stab in the dark:

Foreach (blah in blahblah)
{

blah.Text.Trim();

}
--------------------
 
Back
Top