我有一个列表,列出了一些比利时的带有变音符号的城市:(列日,基夫兰,弗拉涅尔等),我想对这些特殊字符进行转换,以与包含大写相同名称但没有变音符号的列表进行比较( LIEGE,QUIEVRAIN,FRANIERE)
我首先尝试做的是使用大写字母:LIEGE.contentEqual(Liège.toUpperCase())
,但是不合适,因为Liège
的大写字母是LIÈGE
而不是LIEGE
。
我有一些复杂的想法,例如替换每个字符,但这听起来很愚蠢,而且过程很漫长。
关于如何以一种聪明的方式做到这一点的任何想法?
最佳答案
在Java中 checkout 此方法
private static final String PLAIN_ASCII = "AaEeIiOoUu" // grave
+ "AaEeIiOoUuYy" // acute
+ "AaEeIiOoUuYy" // circumflex
+ "AaOoNn" // tilde
+ "AaEeIiOoUuYy" // umlaut
+ "Aa" // ring
+ "Cc" // cedilla
+ "OoUu" // double acute
;
private static final String UNICODE = "\u00C0\u00E0\u00C8\u00E8\u00CC\u00EC\u00D2\u00F2\u00D9\u00F9"
+ "\u00C1\u00E1\u00C9\u00E9\u00CD\u00ED\u00D3\u00F3\u00DA\u00FA\u00DD\u00FD"
+ "\u00C2\u00E2\u00CA\u00EA\u00CE\u00EE\u00D4\u00F4\u00DB\u00FB\u0176\u0177"
+ "\u00C3\u00E3\u00D5\u00F5\u00D1\u00F1"
+ "\u00C4\u00E4\u00CB\u00EB\u00CF\u00EF\u00D6\u00F6\u00DC\u00FC\u0178\u00FF"
+ "\u00C5\u00E5" + "\u00C7\u00E7" + "\u0150\u0151\u0170\u0171";
/**
* remove accented from a string and replace with ascii equivalent
*/
public static String removeAccents(String s) {
if (s == null)
return null;
StringBuilder sb = new StringBuilder(s.length());
int n = s.length();
int pos = -1;
char c;
boolean found = false;
for (int i = 0; i < n; i++) {
pos = -1;
c = s.charAt(i);
pos = (c <= 126) ? -1 : UNICODE.indexOf(c);
if (pos > -1) {
found = true;
sb.append(PLAIN_ASCII.charAt(pos));
} else {
sb.append(c);
}
}
if (!found) {
return s;
} else {
return sb.toString();
}
}
关于java - 比较带有特殊字符(é,è,...)的单词时,忽略变音符号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3211974/