phonetic

How can I measure the similarity between 2 strings?

Given two strings text1 and text2 public SOMEUSABLERETURNTYPE Compare(string text1, string text2) { // DO SOMETHING HERE TO COMPARE } Examples: First String: StackOverflow Second String: StaqOverflow Return: Similarity is 91% The return can be in % or something like that. First String: The simple text test Second String: Th...

Free to use Java phonetic password generator?

I'm looking for free to use phonetic/pronounceable password generator written in Java (or any JVM language, which can be called from Java). Ideally the generator would accept criteria for the passwords it creates, eg: minimum length minimum number of non-alpha characters This would be used in a commercial, distributed applicatio...

asp.net phonetic password generator

hi i am generating random password. but i want to get phonetic string of the password. Any idea how can i get phonetic string? example : deT3f9y => delta - echo -Tango - number 3 - fox - number 9 - yankee ...

What are the practical usages of functions metaphone() and soundex() in PHP?

Metaphone and Soundex are phonetic algorithms for indexing strings by their English pronunciation. Have you ever used functions metaphone() or soundex() that are present in the standard PHP library? What for? What are real-life usages of these functions? ...