1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.commons.codec.language;
19
20
21
22
23
24
25
26
27
28
29
30
31
32 public class Caverphone1 extends AbstractCaverphone {
33
34 private static final String SIX_1 = "111111";
35
36
37
38
39
40
41
42
43 @Override
44 public String encode(final String source) {
45 String txt = source;
46 if (txt == null || txt.isEmpty()) {
47 return SIX_1;
48 }
49
50
51 txt = txt.toLowerCase(java.util.Locale.ENGLISH);
52
53
54 txt = txt.replaceAll("[^a-z]", "");
55
56
57
58 txt = txt.replaceAll("^cough", "cou2f");
59 txt = txt.replaceAll("^rough", "rou2f");
60 txt = txt.replaceAll("^tough", "tou2f");
61 txt = txt.replaceAll("^enough", "enou2f");
62 txt = txt.replaceAll("^gn", "2n");
63
64
65 txt = txt.replaceAll("mb$", "m2");
66
67
68 txt = txt.replace("cq", "2q");
69 txt = txt.replace("ci", "si");
70 txt = txt.replace("ce", "se");
71 txt = txt.replace("cy", "sy");
72 txt = txt.replace("tch", "2ch");
73 txt = txt.replace("c", "k");
74 txt = txt.replace("q", "k");
75 txt = txt.replace("x", "k");
76 txt = txt.replace("v", "f");
77 txt = txt.replace("dg", "2g");
78 txt = txt.replace("tio", "sio");
79 txt = txt.replace("tia", "sia");
80 txt = txt.replace("d", "t");
81 txt = txt.replace("ph", "fh");
82 txt = txt.replace("b", "p");
83 txt = txt.replace("sh", "s2");
84 txt = txt.replace("z", "s");
85 txt = txt.replaceAll("^[aeiou]", "A");
86
87 txt = txt.replaceAll("[aeiou]", "3");
88 txt = txt.replace("3gh3", "3kh3");
89 txt = txt.replace("gh", "22");
90 txt = txt.replace("g", "k");
91 txt = txt.replaceAll("s+", "S");
92 txt = txt.replaceAll("t+", "T");
93 txt = txt.replaceAll("p+", "P");
94 txt = txt.replaceAll("k+", "K");
95 txt = txt.replaceAll("f+", "F");
96 txt = txt.replaceAll("m+", "M");
97 txt = txt.replaceAll("n+", "N");
98 txt = txt.replace("w3", "W3");
99 txt = txt.replace("wy", "Wy");
100 txt = txt.replace("wh3", "Wh3");
101 txt = txt.replace("why", "Why");
102 txt = txt.replace("w", "2");
103 txt = txt.replaceAll("^h", "A");
104 txt = txt.replace("h", "2");
105 txt = txt.replace("r3", "R3");
106 txt = txt.replace("ry", "Ry");
107 txt = txt.replace("r", "2");
108 txt = txt.replace("l3", "L3");
109 txt = txt.replace("ly", "Ly");
110 txt = txt.replace("l", "2");
111 txt = txt.replace("j", "y");
112 txt = txt.replace("y3", "Y3");
113 txt = txt.replace("y", "2");
114
115
116 txt = txt.replace("2", "");
117 txt = txt.replace("3", "");
118
119
120 txt += SIX_1;
121
122
123 return txt.substring(0, SIX_1.length());
124 }
125
126 }