SMALL java1 이모지 제거 여기에 소개 된 여러 방법 중 가장 심플한 것은 regex를 이용한 방법. @Test public void whenRemoveEmojiUsingRegex_thenSuccess() { String text = "la conférence, commencera à 10 heures ?"; String regex = "[^\\p{L}\\p{N}\\p{P}\\p{Z}]"; String result = text.replaceAll(regex, ""); assertEquals(result, "la conférence, commencera à 10 heures "); } 위 정규식의 상세한 설명은 아래와 같음. \p{L} – 모든 나라의 언어 허용 \p{N} – 숫자 \p{P} – 구두점 \p{Z} – 화이트 스페이스.. 2022. 2. 4. 이전 1 다음