1soundex(n) Soundex soundex(n)
2
3
4
5______________________________________________________________________________
6
8 soundex - Soundex
9
11 package require Tcl 8.2
12
13 package require soundex ?1.0?
14
15 ::soundex::knuth string
16
17_________________________________________________________________
18
20 This package provides soundex algorithms which allow the comparison of
21 words based on their phonetic likeness.
22
23 Currently only an algorithm by Knuth is provided, which is tuned to
24 english names and words.
25
26 ::soundex::knuth string
27 Computes the soundex code of the input string using Knuth's
28 algorithm and returns it as the result of the command.
29
31 % ::soundex::knuth Knuth
32 K530
33
34
36 knuth, soundex, text comparison, text likeness
37
39 Copyright (c) ????, Algorithm: Donald E. Knuth
40 Copyright (c) 2003, Documentation: Andreas Kupries <andreas_kupries@users.sourceforge.net>
41 Copyright (c) 1998, Tcl port: Evan Rempel <erempel@uvic.ca>
42
43
44
45
46soundex 1.0 soundex(n)