如何替换字符串中的特殊字符? [英] How to replace special characters in a string?

查看:131
本文介绍了如何替换字符串中的特殊字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个包含许多特殊字符的字符串。我想删除所有这些,但保留字母字符。

I have a string with lots of special characters. I want to remove all those, but keep alphabetical characters.

我该怎么做?

推荐答案

这取决于你的意思。如果您只想摆脱它们,请执行以下操作:

(更新:显然您也想保留数字,在这种情况下使用第二行)

That depends on what you mean. If you just want to get rid of them, do this:
(Update: Apparently you want to keep digits as well, use the second lines in that case)

String alphaOnly = input.replaceAll("[^a-zA-Z]+","");
String alphaAndDigits = input.replaceAll("[^a-zA-Z0-9]+","");

或等价物:

String alphaOnly = input.replaceAll("[^\\p{Alpha}]+","");
String alphaAndDigits = input.replaceAll("[^\\p{Alpha}\\p{Digit}]+","");

(所有这些都可以通过预编译正则表达式并将其存储在常量中来显着改善)

(All of these can be significantly improved by precompiling the regex pattern and storing it in a constant)

或者,使用番石榴

private static final CharMatcher ALNUM =
  CharMatcher.inRange('a', 'z').or(CharMatcher.inRange('A', 'Z'))
  .or(CharMatcher.inRange('0', '9')).precomputed();
// ...
String alphaAndDigits = ALNUM.retainFrom(input);

但是如果你想将重音字符转换成仍然是ascii的合理字符,请看这些问题:

But if you want to turn accented characters into something sensible that's still ascii, look at these questions:

  • Converting Java String to ASCII
  • Java change áéőűú to aeouu
  • ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars

这篇关于如何替换字符串中的特殊字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆