String to convert to Soundex representation.
Optional 4 char array to put the resulting Soundex characters into. If null, the return value buffer will be allocated on the heap.
The four character array with the Soundex result in it. Returns null if there is no Soundex representation for the string.
assert(soundex("Gauss") == "G200"); assert(soundex("Ghosh") == "G200"); assert(soundex("Robert") == "R163"); assert(soundex("Rupert") == "R163"); assert(soundex("0123^&^^**&^") == null);
Like soundexer, but with different parameters and return value.