Compare With Ordinal : String Compare « Data Types « VB.Net






Compare With Ordinal

    
Imports System
Imports System.Globalization

Public Class SamplesCompareInfo

   Public Shared Sub Main()
      Dim myStr1 As [String] = "Bill's"
      Dim myStr2 As [String] = "bills"

      ' Creates a CompareInfo that uses the InvariantCulture.
      Dim myComp As CompareInfo = CultureInfo.InvariantCulture.CompareInfo

      ' Compares two strings using myComp.
      Console.WriteLine("Comparing ""{0}"" and ""{1}""", myStr1, myStr2)
      Console.WriteLine("With Ordinal: {0}", myComp.Compare(myStr1, myStr2, CompareOptions.Ordinal))
   
   End Sub

End Class

   
    
    
    
  








Related examples in the same category

1.Compares two strings using different CompareOptions settings.
2.Compare string with CompareOptions.None
3.Compare With StringSort
4.Compare with With IgnoreCase
5.Compare With IgnoreSymbols
6.Compare With IgnoreCase and IgnoreSymbols
7.calling the Compare method.
8.Compare two string ignoring case
9.Compare two strings case-sensitively
10.Sample for String.Compare(String, Int32, String, Int32, Int32, Boolean)
11.String.Equals(Object), String.Equals(String), String.Equals(String, String)
12.Generic and nongeneric versions of the CompareTo method for String value
13.Compare strings with StringComparison enum
14.Perform a string sort using the current culture with custom comparer
15.Ordinal test for equality
16.Culture-sensitive test for equality
17.Compare String: case sensitive and not sensitiveCompare String: case sensitive and not sensitive
18.String compareString compare
19.Compare two StringsCompare two Strings
20.Compare strings with different culture settings
21.Sort a string with your own IComparer definition
22.String.Compare Method compares substrings of two specified String
23.Compares substrings ignoring or honoring their case
24.Compares two Strings using the specified comparison options and culture-specific information
25.String.CompareOrdinal