v1.0.2
text_search
간단한 메모리 내 퍼지 텍스트 검색 라이브러리.
31좋아요 7.9만30일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
Dart용 메모리 내 퍼지 텍스트 검색 라이브러리입니다.
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
An in-memory fuzzy text search library for Dart.
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'));
}
Please file feature requests and bugs at the issue tracker.