XsltFunctions.MSStringCompare(String, String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Implements ms:string-compare
Microsoft XPath extension function.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double MSStringCompare(System::String ^ s1, System::String ^ s2, System::String ^ lang, System::String ^ options);
public static double MSStringCompare (string s1, string s2, string lang, string options);
static member MSStringCompare : string * string * string * string -> double
Public Shared Function MSStringCompare (s1 As String, s2 As String, lang As String, options As String) As Double
Parameters
- s1
- String
The first string to compare.
- s2
- String
The second string to compare.
- lang
- String
The language. Optional.
- options
- String
Specifies whether the comparison is case-sensitive.
Returns
If s1
< s2
the method returns -1. If s1
== s2
the method returns 0. If s1
> s2
the method returns 1.