SpotiFlyer/fuzzywuzzy
2021-03-19 20:45:58 +05:30
..
.circleci FuzzyWuzzy KMP added. 2021-01-30 19:40:31 +05:30
app Code Cleaned & Ktlint Added 2021-03-19 20:45:58 +05:30
gradle Art and Copyright updated 2021-03-18 23:41:45 +05:30
build.gradle Art and Copyright updated 2021-03-18 23:41:45 +05:30
gradle.properties Art and Copyright updated 2021-03-18 23:41:45 +05:30
gradlew Art and Copyright updated 2021-03-18 23:41:45 +05:30
gradlew.bat FuzzyWuzzy KMP added. 2021-01-30 19:40:31 +05:30
LICENSE FuzzyWuzzy KMP added. 2021-01-30 19:40:31 +05:30
README.md FuzzyWuzzy KMP added. 2021-01-30 19:40:31 +05:30
settings.gradle Art and Copyright updated 2021-03-18 23:41:45 +05:30

FuzzyWuzzy-Kotlin

badge badge badge badge badge badge badge badge

CircleCI

Fuzzy string matching for Kotlin (JVM, iOS) - fork of the Java fork of of Fuzzy Wuzzy Python lib. For use in on JVM, Android, or Kotlin Multiplatform projects (JVM/Android, iOS, mac, linux)

Useful for selecting the closest matching string from a collection of strings. Various algorithms are available.

See Java repo or Python repo for usage.

To add to project in the common module add the dependency:

sourceSets {
  commonMain {
      dependencies {
          implementation "com.willowtreeapps:fuzzywuzzy-kotlin:0.1.1"
      }
   }
}