free_text_search 0.0.1-beta.5 copy "free_text_search: ^0.0.1-beta.5" to clipboard
free_text_search: ^0.0.1-beta.5 copied to clipboard

Search a inverted positional index and return ranked references to documents relevant to the search phrase.

example/free_text_search_example.dart

// Copyright ©2022, GM Consult (Pty) Ltd.
// BSD 3-Clause License
// All rights reserved

import 'package:free_text_search/src/_index.dart';

void main() async {
  //

  // A phrase with all the modifiers.
  const phrase =
      '"athletics track" +surfaced arena OR stadium "Launceston" -hobart NOT help-me';

  // parse the phrase
  await _parsePhrase(phrase);
}

/// To parse a phrase simply pass it to the `QueryParser.parse` method,
/// including any modifiers.
Future<List<QueryTerm>> _parsePhrase(String phrase) async {
  // initialize the QueryParser
  final queryParser = QueryParser();
  // parse the phrase
  final queryTerms = await queryParser.parse(phrase);
  // print the terms and their modifiers
  for (final qt in queryTerms) {
    // prints -   "term" [MODIFIER]
    print(' - "${qt.term}" [${qt.modifier.name}]');
  }
  // prints:
  //  - "athletics track" [EXACT]
  //  - "athletics" [OR]
  //  - "track" [OR]
  //  - "surfaced" [IMPORTANT]
  //  - "arena" [AND]
  //  - "stadium" [OR]
  //  - "Launceston" [EXACT]
  //  - "launceston" [OR]
  //  - "hobart" [NOT]
  //  - "help-me" [NOT]
  //  - "help" [NOT]"
  return queryTerms;
}
0
likes
100
pub points
0%
popularity

Publisher

verified publishergmconsult.dev

Search a inverted positional index and return ranked references to documents relevant to the search phrase.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

text_indexing

More

Packages that depend on free_text_search