Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 29, 2021 01:18 am GMT

PHP Damarau levenstein on Longest Match SubString

function getLongestMatchingSubstring($str1, $str2){    $len_1 = strlen($str1);    $longest = '';    for($i = 0; $i < $len_1; $i++){        for($j = $len_1 - $i; $j > 0; $j--){            $sub = substr($str1, $i, $j);            if (strpos($str2, $sub) !== false && strlen($sub) > strlen($longest)){                $longest = $sub;                break;            }        }    }    return $longest;}

Original Link: https://dev.to/kevinmel2000/php-damarau-levenstein-on-longest-match-substring-4kbh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To