| StringDifferenceJaroWinkler Method |
Returns the Jaro-Winkler proximity of two strings
Namespace:
SanteDB.Matcher.Util
Assembly:
SanteDB.Matcher (in SanteDB.Matcher.dll) Version: 2.2.1
Syntax public static double JaroWinkler(
this string source,
string target
)
<ExtensionAttribute>
Public Shared Function JaroWinkler (
source As String,
target As String
) As Double
public:
[ExtensionAttribute]
static double JaroWinkler(
String^ source,
String^ target
)
[<ExtensionAttribute>]
static member JaroWinkler :
source : string *
target : string -> float
Parameters
- source
- Type: SystemString
[Missing <param name="source"/> documentation for "M:SanteDB.Matcher.Util.StringDifference.JaroWinkler(System.String,System.String)"]
- target
- Type: SystemString
[Missing <param name="target"/> documentation for "M:SanteDB.Matcher.Util.StringDifference.JaroWinkler(System.String,System.String)"]
Return Value
Type:
Double[Missing <returns> documentation for "M:SanteDB.Matcher.Util.StringDifference.JaroWinkler(System.String,System.String)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also