Compares two given strings and returns the fuzzy match index.

Syntax:

FuzzyMatch( String1 As String, String2 As String ) As Long
Return: Long
Parameters: String1 First string to be compared with String2.
String2 Second string to be compared with String1.

Example:
Dim Tool As WordsAnalysis
Dim TU As TransUnit
Dim FuzzyMatch As Long

Set Tool = Application.Tools.WordsAnalysis
Set TU = Application.ActiveTransUnit

FuzzyMatch = Tool.FuzzyMatch(TU.Target, TU.AltTranslations.Item(1).Target)

See also:

Class WordsAnalysis


Last Updated: 03/03/04