vote up 0 vote down star
1

Hi,

I have a C# routine that imports data from a csv file, matches it against a database and then rewrites it to a file. The source file seems to have a few non-ascii characters that are fouling up the processing routine.

I already have a static method that I run each input field through but it performs basic checks like removing commas and quotes. Does anybody know how I could add functionality that removes non-ascii characters too?

Thanks, Chris

flag

79% accept rate

3 Answers

vote up 2 vote down check

string sOut = Encoding.ASCII.GetString(Encoding.ASCII.GetBytes(s))

link|flag
vote up 0 vote down

If you wanted to test a specific character, you could use

if ((int)myChar <= 127)

Just getting the ASCII encoding of the string will not tell you that a specific character was non-ASCII to begin with (if you care about that). See MSDN.

link|flag
vote up 0 vote down

It sounds kind of strange that it's accepted to drop the non-ASCII.

Also I always recommend the excellent FileHelpers library for parsing CSV-files.

link|flag

Your Answer

Get an OpenID
or

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