text_search 1.0.1 copy "text_search: ^1.0.1" to clipboard
text_search: ^1.0.1 copied to clipboard

Simple in-memory fuzzy text searching library.

An in-memory fuzzy text search library for Dart.

license.

Usage #

A simple usage example:

import 'package:text_search/text_search.dart';

main() {
  final searchableItems = [
    TextSearchItem.fromTerms('Coffee Shop', ['coffee', 'latte', 'macchiato', 'tea']),
    TextSearchItem.fromTerms('Dessert', ['ice cream', 'cake', 'pastry']),
    TextSearchItem.fromTerms('Milk Tea Shop', ['boba', 'milk tea', 'bubble tea']),
  ];

  final placeTypeSearch = TextSearch(searchableItems);
  print(placeTypeSearch.search('icecream'));
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

19
likes
130
pub points
97%
popularity

Publisher

unverified uploader

Simple in-memory fuzzy text searching library.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

tuple

More

Packages that depend on text_search