remove-non-ascii
#tip
high-ASCII characters ?
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
Last updated
Was this helpful?