3つの文字列を比較したい:
"a text string" //target string
"a kind of similar text string"
"the cow jumps over the moon"
そして、ターゲットにx%類似した結果を返すパーセンテージパラメータを設定します。
$results = compare($array,$target,80)
$results // Returns an array with str 1,2, because they are at least 80 similar to the target.
また、JavaScriptやjQueryでも同様の機能が可能ですか?