woozy_search

Creator: coderz1093

Last updated:

Add to Cart

Description:

woozy search

Woozy Search #
A super simple and lightweight client-side fuzzy-search library based on Levenshtein distance.
Usage #
dependencies:
woozy_search: '>=2.0.2 <3.0.0'
copied to clipboard
Basic Usage
import 'package:woozy_search/woozy_search.dart';

main() {
final woozy = Woozy();
woozy.addEntries(['basketball', 'badminton', 'skating']);
final output = woozy.search('badmi');
output.forEach((element) => print(' - ${element}'));
}
copied to clipboard
Output:
- text: badminton, score: 0.56
- text: basketball, score: 0.20
- text: skating, score: 0.14
copied to clipboard
With Associate Values
Associate value can be anything, integers, UUIDs, text, etc.
As an example, we use a name and their phone number here.
import 'package:woozy_search/woozy_search.dart';

main() {
final woozy = new Woozy();
woozy.addEntry('John Doe', value: "+1 210-269-0117");
woozy.addEntry('Nate Humphrey', value: "+1 (416) 527-4927");
woozy.addEntry('Serena Waldorf', value: "+ 1 914-514-7901");
final output = woozy.search('humphray');
output.forEach((element) => print(' - ${element}'));
}
copied to clipboard
Output:
- text: Nate Humphrey, score: 0.88, value: +1 (416) 527-4927
- text: Serena Waldorf, score: 0.13, value: + 1 914-514-7901
- text: John Doe, score: 0.13, value: +1 210-269-0117
copied to clipboard
With Search Output Limit
Limit the number of search result to return.
It is defaulted to 10, but can be overwritten.
import 'package:woozy_search/woozy_search.dart';

main() {
final woozy = Woozy(limit: 2);
woozy.setEntries(List.filled(100, 'foo'));
final output = woozy.search('f');
output.forEach((element) => print(' - ${element}'));
}
copied to clipboard
Output:
- text: foo, score: 0.33
- text: foo, score: 0.33
copied to clipboard
With Case Sensitive
main() {
final woozy = Woozy(caseSensitive: true);
woozy.setEntries(['FOO', 'boo']);
final output = woozy.search('foo');
output.forEach((element) => print(' - ${element}'));
}
copied to clipboard
Output:
- text: boo, score: 0.67
- text: FOO, score: 0.00
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.