What should these comparisons return? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:45:06Z http://stackoverflow.com/feeds/question/264495 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/264495/what-should-these-comparisons-return 3 What should these comparisons return? Scott A. Lawrence 2008-11-05T06:45:24Z 2008-11-05T07:21:51Z <p>I've got an application that's using string.compare(string,string) to sort some values. The thing I can't figure out is why "1022" compares as less than "10-23" and "10-23" compares as less than "1024".</p> <p>Is there something specific to the value of "-" that causes this result? Will that overload of string.compare give the same result with different culture settings for the same type of data (numbers with dashes)?</p> http://stackoverflow.com/questions/264495/what-should-these-comparisons-return/264525#264525 3 Answer by Marc Gravell for What should these comparisons return? Marc Gravell 2008-11-05T07:01:51Z 2008-11-05T07:21:51Z <p>Well, ignoring the dashes is fairly innocent. If you want to include them, perhaps use <code>StringComparison.Ordinal</code> in the overload.</p> <p>Reading the <a href="http://msdn.microsoft.com/en-us/library/84787k22.aspx" rel="nofollow">docs for <code>string.Compare</code></a>, it uses word sort rules, which from <a href="http://msdn.microsoft.com/en-us/library/system.globalization.compareoptions.aspx" rel="nofollow">here</a> means :</p> <blockquote> <p>Word sort performs a culture-sensitive comparison of strings. Certain nonalphanumeric characters might have special weights assigned to them. For example, the hyphen ("-") might have a very small weight assigned to it so that "coop" and "co-op" appear next to each other in a sorted list.</p> </blockquote> <p>At least it is transitive: I logged a <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=236900" rel="nofollow">bug</a> with "connect" about something very similar involving dashes - where A &lt; B, B &lt; C <em>and</em> C &lt; A. since a non-transitive comparison essentially breaks the rules of sorting. It was closed "will not fix". Here it is:</p> <pre><code>string s1 = "-0.67:-0.33:0.33"; string s2 = "0.67:-0.33:0.33"; string s3 = "-0.67:0.33:-0.33"; Console.WriteLine(s1.CompareTo(s2)); Console.WriteLine(s2.CompareTo(s3)); Console.WriteLine(s1.CompareTo(s3)); </code></pre> <p>(returns 1,1,-1 on my machine)</p> http://stackoverflow.com/questions/264495/what-should-these-comparisons-return/264539#264539 5 Answer by Rasmus Faber for What should these comparisons return? Rasmus Faber 2008-11-05T07:15:50Z 2008-11-05T07:15:50Z <p>From the documentation of <a href="http://msdn.microsoft.com/en-us/library/84787k22.aspx" rel="nofollow">string.Compare(String, String)</a>:</p> <blockquote> <p>The comparison is performed using word sort rules.</p> </blockquote> <p>and <a href="http://msdn.microsoft.com/en-us/library/system.globalization.compareoptions.aspx" rel="nofollow">further</a>:</p> <blockquote> <p>The .NET Framework uses three distinct ways of sorting: word sort, string sort, and ordinal sort. Word sort performs a culture-sensitive comparison of strings. Certain nonalphanumeric characters might have special weights assigned to them. For example, the hyphen ("-") might have a very small weight assigned to it so that "coop" and "co-op" appear next to each other in a sorted list. String sort is similar to word sort, except that there are no special cases. Therefore, all nonalphanumeric symbols come before all alphanumeric characters. Ordinal sort compares strings based on the Unicode values of each element of the string.</p> </blockquote> <p>Some more details from Michael Kaplan here: <a href="http://blogs.msdn.com/michkap/archive/2007/09/20/5008305.aspx" rel="nofollow">A&amp;P of Sort Keys, part 9 (aka Not always transitive, but punctual and punctuating) </a>.</p>