WordLevenshtein Constructor | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates a WordLevenshtein object
Namespace:
Telogis.GeoBase.Indexes
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public WordLevenshtein(
string query,
int maxEditDistance,
int missingWordCost,
int extraWordCost
)
Public Sub New (
query As String,
maxEditDistance As Integer,
missingWordCost As Integer,
extraWordCost As Integer
)
Parameters
- query
- Type: SystemString
The query string - maxEditDistance
- Type: SystemInt32
The maximum value to be returned if the query string and test string
are too different - missingWordCost
- Type: SystemInt32
The cost to be added to the distance if the query string lacks a word
from the test string - extraWordCost
- Type: SystemInt32
The cost to be added to the distance if the query string has an extra word
than the test string
See Also