Returns the match strength information for a field in the record.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Function getCharMatchStrengths( _ 
   ByVal fieldName As String _ 
) As Integer()
C#
public int[] getCharMatchStrengths(
   string fieldName
)
C++
public:
 array<int>^ getCharMatchStrengths(
   String fieldName
) sealed 
J#
public int[] getCharMatchStrengths(
   string fieldName
)
JScript
public  function getCharMatchStrengths(
   fieldName : String
) : int[]

Parameters

fieldName
The name of the field for which to return its match strength information.

Return Value

An integer array with one value in the array for each character in the given field.

Remarks

The core search algorithm creates match strengths for each character in a matching record. These strenghths are represented as an integer from 0 to 6 where 6 is the highest quality match and 0 indicates no match.

See Also