https://devtools.solutions/tools/text/similarity-score.html

Similarity Score

Calculate the similarity percentage between two strings using a Levenshtein-based distance algorithm.

Similarity Score


    

Example input/output

Input: hello world / helo world

Output: Similarity: 94.7%

How it works

This tool computes the Levenshtein edit distance between the two strings and divides by the length of the longer string to produce a similarity percentage. A score of 100% means identical strings; 0% means completely different. Processing runs in your browser.

Common use cases

Related tools