这个问题已经有了答案:
String s = "VIRÃ";
在我的字符串中 s 我有一个特殊的字符,这是一个西班牙字符,我想从我的字符串中删除这个和所有的西班牙特殊字符。我怎样才能搬走?
s
预期产量
VIRU
使用 StringUtils.stripAccents 阿帕奇公地:
StringUtils.stripAccents
String output = StringUtils.stripAccents("VIRÃ"); System.out.println(output); // VIRU
Maven依赖项:
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.6</version> </dependency>