Difference()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

Difference()

Gets the difference between strings as a Decimal value

OutputVar := instance.Difference(strFrist)
OutputVar := instance.Difference(strFrist, maxDistance)
OutputVar := MfString.Difference(strFirst, strSecond)
OutputVar := MfString.Difference(strFirst, strSecond, maxDistance)

Difference(strFirst)

Gets the Difference between MfString instance and the strFirst argument

Remarks

maxDistance of 5 if applied.

Difference(strFirst, maxDistance)

Gets the Difference between MfString instance and the strFirst argument with an included Max Distance.

MfString.Difference(strFirst, strSecond)

Gets the Difference between argument strFirst and argument strSecond

Remarks

maxDistance of 5 if applied.

MfString.Difference(strFirst, strSecond, maxDistance)

Gets the Difference between argument strFirst and argument strSecond argument with an included Max Distance.

Parameters

strFirst

the second string to compare.
Can be instance of MfString or var containing string.

strSecond

the second string to compare.
Can be instance of MfString or var containing string.

maxDistance

Integer tells the algorithm to stop if the strings are already too different.
Can be instance of MfInteger or var containing integer.

Returns

Returns returns the difference between the strings as a MfFloat between 0 and 1.
0 means strings are identical. 1 means they have nothing in common.
If ReturnAsObject Property for this instance is true then returns MfFloat otherwise returns var containing Float value.

Throws

Throws MfArgumentException if the incorrect number or type of parameters are passed in.
Throws MfNotSupportedException if Overloads can not match Parameters.

Remarks

Variadic Method; This method is Variadic so you may construct an instance of MfParams containing any of the overload method parameters listed above and pass in the MfParams instance to the method instead of using the overloads described above. See MfParams for more information.

Examples

MyVar := "Hello World"
MyStr := new MfString(MyVar) ; creates a new MfString object with the contents of MyVar
p := new MfParams() ; create a new instance of the MfParams class
p.AddString("New World") ; add strFirst to MfParams
result := MyStr.Difference(p) ; Get the results; result = 0.381818

MyVar := "Hello World"
MyStr := new MfString(MyVar) ; creates a new MfString object with the contents of MyVar
strFirst := new MfString("New World") ; create instance of MfString
result := MyStr.Difference(strFirst) ; Get the results; result = 0.381818

MyVar := "Hello World"
MyStr := new MfString(MyVar) ; creates a new MfString object with the contents of MyVar
p := new MfParams() ; create a new instance of the MfParams class
p.AddString("New World") ; add strFirst to MfParams
p.AddInteger(2) ; add maxDistance to MfParams
result := MyStr.Difference(p) ; Get the results; result = 0.272727

MyVar := "Hello World"
MyStr := new MfString(MyVar) ; creates a new MfString object with the contents of MyVar
strFirst := new MfString("New World") ; create instance of MfString
iMax := new MfInteger(2) ; create new instance of MfInteger
result := MyStr.Difference(strFirst, iMax) ; Get the results; result = 0.272727

; it is fine to use only var as well
strA := "New World"
strB := "Hello World"
result := MfString.Difference(strA, strB, 2) ; Get the results; result = 0.272727

; it is fine to use var as well
strObjA := new MfString("New World")
strB := "Hello World"
result := strObjA.Difference(strB, 2) ; Get the results; result = 0.272727

; create a new instance of the MfParams class and add strFirst and strSecond
p := new MfParams("s=Hello World,s=Some other string")
result := MfString.Difference(p) ; Get the results; result = 0.588235

result := MfString.Difference(new MfParams("s=Hello World,s=Some other string,I=2")) ; Get the results; result = 0.588235
; MfParams contains strFrist, strSecond, maxDistance

Related

EndsWith()
StartsWith()
Equals()