StringUtilsDifferenceCount Method |
Compares two strings and returns the count of the difference between the two strings. The string limit for comparison is 64 characters.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static int DifferenceCount(
string s1,
string s2,
DiffCountOptions options
)
Public Shared Function DifferenceCount (
s1 As String,
s2 As String,
options As DiffCountOptions
) As Integer
Parameters
- s1
- Type: SystemString
First string to compare - s2
- Type: SystemString
Second string to comapre - options
- Type: NetQuarryDiffCountOptions
DiffCountOptions
Return Value
Type:
Int32Integer value measuring the differences between strings s1 and s2 based on the provided DiffCountOptions
See Also