text_comparison_score_codespark 0.0.4 copy "text_comparison_score_codespark: ^0.0.4" to clipboard
text_comparison_score_codespark: ^0.0.4 copied to clipboard

The TextComparisonScore package is a straightforward and efficient tool for comparing two strings and calculating their similarity score using the Levenshtein distance algorithm.

example/main.dart

import 'dart:developer';

import 'package:text_comparison_score_codespark/text_comparison_score_codespark.dart';

void main() {
  // Example 1: Simple comparison
  String string1 = "kitten";
  String string2 = "sitting";

  double matchPercent = TextComparisonScore.matchPercentage(string1, string2);
  log("Match Percentage between '$string1' and '$string2': $matchPercent%");

  // Example 2: Identical strings
  String identical1 = "flutter";
  String identical2 = "flutter";

  double identicalMatchPercent =
      TextComparisonScore.matchPercentage(identical1, identical2);
  log("Match Percentage between identical strings '$identical1' and '$identical2': $identicalMatchPercent%");

  // Example 3: Completely different strings
  String different1 = "apple";
  String different2 = "orange";

  double differentMatchPercent =
      TextComparisonScore.matchPercentage(different1, different2);
  log("Match Percentage between completely different strings '$different1' and '$different2': $differentMatchPercent%");

  // Example 4: One string is empty
  String emptyString = "";

  double emptyMatchPercent =
      TextComparisonScore.matchPercentage(string1, emptyString);
  log("Match Percentage between '$string1' and an empty string: $emptyMatchPercent%");

  // Example 5: Both strings are empty
  double bothEmptyMatchPercent =
      TextComparisonScore.matchPercentage(emptyString, emptyString);
  log("Match Percentage between two empty strings: $bothEmptyMatchPercent%");

  // Example 6: Case insensitive comparison
  String caseSensitive1 = "Hello";
  String caseSensitive2 = "hello";

  double caseSensitiveMatchPercent = TextComparisonScore.matchPercentage(
      caseSensitive1, caseSensitive2,
      caseSensitive: false);
  log("Match Percentage between '$caseSensitive1' and '$caseSensitive2' (case insensitive): $caseSensitiveMatchPercent%");

  // Example 7: Case sensitive comparison
  String caseSensitive3 = "Hello";
  String caseSensitive4 = "hello";

  double caseSensitiveMatchPercent2 = TextComparisonScore.matchPercentage(
      caseSensitive1, caseSensitive2,
      caseSensitive: true);
  log("Match Percentage between '$caseSensitive3' and '$caseSensitive4' (case sensitive): $caseSensitiveMatchPercent2%");
}
4
likes
160
pub points
50%
popularity
screenshot

Publisher

verified publisherksaikiran.site

The TextComparisonScore package is a straightforward and efficient tool for comparing two strings and calculating their similarity score using the Levenshtein distance algorithm.

Repository (GitHub)
View/report issues

Topics

#textcomparison #compare #score #levenshteindistance

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on text_comparison_score_codespark