c*********l 发帖数: 17 | 1 比如,我需要把 "Séduction" 转换成 "Seduction",这样这两个String在我的JAVA程
序中就可以当做相同的来对待了。
谢谢! | t****r 发帖数: 25 | 2 u do a byte by byte inspection, when a byte is falling outside of ASCII
range, you replace it w/ a right one.
【在 c*********l 的大作中提到】 : 比如,我需要把 "Séduction" 转换成 "Seduction",这样这两个String在我的JAVA程 : 序中就可以当做相同的来对待了。 : 谢谢!
| c*********l 发帖数: 17 | 3 But é is also in ASCII...
And another problem is that if I try to replace them by myself, I may not be
sure which should be the right converted ones.
E.g, é -> e, but how about Å? | m******t 发帖数: 2416 | 4
If you only need to compare these strings, use java.text.Collator.
【在 c*********l 的大作中提到】 : 比如,我需要把 "Séduction" 转换成 "Seduction",这样这两个String在我的JAVA程 : 序中就可以当做相同的来对待了。 : 谢谢!
|
|