FileDocCategorySizeDatePackage
SoundexSimple.javaAPI DocExample347Tue Feb 27 15:57:18 GMT 2001None

SoundexSimple.java

/** Simple demonstration of Soundex.  */
public class SoundexSimple {

	/** main */
	public static void main(String[] args) { 
		String[] names = {
			"Darwin, Ian",
			"Davidson, Greg",
			"Darwent, William",
			"Derwin, Daemon"
		};
		for (int i = 0; i< names.length; i++)
			System.out.println(Soundex.soundex(names[i]) + ' ' + names[i]);
	}
}