Last updated 1 year ago
Was this helpful?
#tip
Non-ASCII characters 를 의미하는 듯.
0x0 ~ 0x7F 밖의 문자를 지우고 싶으면.. (all non-US-ASCII )
아래와 같이 코드 작성하면 됨.
s = s.replaceAll("[^\\x00-\\x7f]", "");
https://stackoverflow.com/questions/5008422/how-to-remove-high-ascii-characters-from-string-like-in-java
https://developer-p.tistory.com/72