0

我正在寻找一个 sulotion。我有两个字符串需要相互比较并获得唯一性百分比。

例如:

{
String A = "Hello"
String B = "Hello"
Uniqueness percent = 0%
}

{
String A = "Hello friend"
String B = "Hello mate"
Uniqueness percent = 50%
}

{
String A = "Hey"
String B = "Hello"
Uniqueness percent = 100%
}
4

3 回答 3

1

给你,这段代码基于similar_text() php函数,我可以看到它通过字母而不是整个单词来比较字符串,看例子:

<?php

    if(isset($_REQUEST["str_a"]) && isset($_REQUEST["str_b"])) {

        $str_a = $_REQUEST["str_a"];    
        $str_b = $_REQUEST["str_b"];    

        function compare_them($str_1, $str_2) {

            $str_1 = trim(strtolower($str_1));
            $str_2 = trim(strtolower($str_2));

            similar_text($str_1, $str_2, $percentage);

            $formated_percents = number_format($percentage);

            return $formated_percents; 

        }

        $calculated = compare_them($str_a, $str_b);

    }


?>

<form action="" method="get">

    string a: <input type="text" value="" name="str_a" />
    <br />
    string b: <input type="text" value="" name="str_b" />
    <br />
    <br />
    <input type="submit" value="submit" />

</form>

<h2>
<?php 

    if(isset($_REQUEST["str_a"]) && isset($_REQUEST["str_b"])) { 

        print "string a = " . $str_a . " <br />string b = " . $str_b . " <br />percents match = " . $calculated . "%"; 

    }

?>
</h2>

这是现场示例:
http ://simplestudio.rs/yard/percent/percent.php

于 2012-10-05T01:00:35.697 回答
1

PHP中有一些语言函数可供您使用。

http://php.net/manual/en/function.levenshtein.php

http://www.php.net/manual/en/function.soundex.php

http://www.php.net/manual/en/function.similar-text.php

http://www.php.net/manual/en/function.metaphone.php

由于您的问题缺少有关唯一性标准的详细信息,因此您必须检查其中一项是否满足您的需求。

于 2012-10-05T00:20:46.533 回答
0

您可以使用similar_text()

similar_text($string1,$string2,$percentage);
echo $percentage;

http://www.php.net/manual/en/function.similar-text.php

如果您正在寻找性能关键的解决方案,那么您需要使用优化算法(在大多数情况下这是一个很好的解决方案)。

于 2012-10-05T00:38:09.020 回答