strings/ strmisc.bi | |
License | Copyright © 2009, FreeBASIC Extended Library Development Group |
ext. strings | |
Functions | |
LevenshteinDistance | Computes the Levenshtein Distance between two strings. |
Pos |
Copyright © 2009, FreeBASIC Extended Library Development Group
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com- /p- /fb-extended-lib- /wiki- /License
Functions | |
LevenshteinDistance | Computes the Levenshtein Distance between two strings. |
Pos |
declare function LevenshteinDistance( byref subject as const string, byref t as const string ) as integer
Computes the Levenshtein Distance between two strings.
subject | the string to compute the distance on. |
t | the string to find the distance to. |
The levenshtein distance of the strings.
Computes the Levenshtein Distance between two strings.
declare function LevenshteinDistance( byref subject as const string, byref t as const string ) as integer
declare function Pos ( byref haystack as const string, byref needle as const string, byval offset as integer ) as integer