views:

86

answers:

4

After a few harsh lessons I now always use OrdinalIgnoreCase when comparing Strings in DotNET. I've run into maybe 5 different problems to do with numerics, weird alphabets and localisations. Does anyone know of a good site that explains in depth a lot of the problems with culture specific Strings, preferably with a bunch of good examples of where and how something can fail?

+2  A: 

I actually found MSDN quite useful for this explanation.

For detailed information, have a look at New Recommendations for Using Strings in Microsoft .NET 2.0.

Nader Shirazie
+1  A: 

Hi, this one seems preety good to me. I live in Turkey and I know that understanding the turkish İ character will help you understand the concept better.

Paulo Manuel Santos
Thanks guys, this will keep me busy for a few days.
David Rutten
+1  A: 

Here's my favorite: Sorting it all Out

Alan Moore