fuzzywuzzy 0.1.2 copy "fuzzywuzzy: ^0.1.2" to clipboard
fuzzywuzzy: ^0.1.2 copied to clipboard

outdated

An implementation of the popular fuzzywuzzy package in Dart, to suit all your fuzzy string matching/searching needs!

example/fuzzywuzzy.dart

import 'package:fuzzywuzzy/fuzzywuzzy.dart';

void main() {
  // Simple ratio
  print(ratio("mysmilarstring", "myawfullysimilarstirng"));
  print(ratio("mysmilarstring", "mysimilarstring"));

  // Partial ratio
  print(partialRatio("similar", "somewhresimlrbetweenthisstring"));

  // Token sort ratio
  print(tokenSortPartialRatio("order words out of", "words out of order"));
  print(tokenSortRatio("order words out of", "words out of order"));

  // Token set ratio
  print(tokenSetRatio("fuzzy was a bear", "fuzzy fuzzy fuzzy bear"));
  print(tokenSetPartialRatio("fuzzy was a bear", "fuzzy fuzzy fuzzy bear"));

  // Weighted ratio
  print(weightedRatio("The quick brown fox jimps ofver the small lazy dog",
      "the quick brown fox jumps over the small lazy dog"));
}
128
likes
0
points
41.5k
downloads

Publisher

verified publisherkat.bio

Weekly Downloads

An implementation of the popular fuzzywuzzy package in Dart, to suit all your fuzzy string matching/searching needs!

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on fuzzywuzzy