Weights each char in String and returns a 4 char code. For example Soundex("sneider") is equal to Soundex("snider").
Soundex( StringToCheck )
4 Char Soundex code. The weight is calculated as follows:
If the returned soundex code is 2 or 3 chars, then 0 chars are appended
If the returned soundex code is more than 4 chars, then all chars after the 4th char will be ignored.
Soundex("sneider") == Soundex("snider")