[Java] 두 문자열 간에 일치 정도 확인 하기 (Levenshtein)
2022-12-12 1. 방법 apache.commons.text 라이브러리에서 제공하는 LevenshteinDistance를 사용하면 두 문자열 간에 차이를 쉽게 구할 수 있다. 여기서 LevenshteinDistance는 편집 거리 알고리즘이라고 불리며, 두 문자열에 형태적 유사도를 측정하는 방법이다. https://en.wikipedia.org/wiki/Levenshtein_distance Levenshtein distance - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Computer science metric for string similarity In information theory, l..