Discussion:
[dart-misc] Fuzzy string matching package?
John McCutchan
2015-09-14 14:10:25 UTC
Permalink
Hi,

I'm wondering if there is a fuzzy string matching package available?
Something that matches along the lines of the command palette in Sublime.

Thanks,
John
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Günter Zöchbauer
2015-09-14 15:02:54 UTC
Permalink
Something like https://github.com/joshaven/string_score?
I haven't seen anything similar in Dart but it's only a few lines of JS
code.
Post by John McCutchan
Hi,
I'm wondering if there is a fuzzy string matching package available?
Something that matches along the lines of the command palette in Sublime.
Thanks,
John
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Ahmet A. Akın
2015-09-14 16:35:31 UTC
Permalink
I wrote long ago https://pub.dartlang.org/packages/dart_spell .But it only
finds words within a certain edit distance. It is fast, but I doubt it is
what you needed.
Post by John McCutchan
Hi,
I'm wondering if there is a fuzzy string matching package available?
Something that matches along the lines of the command palette in Sublime.
Thanks,
John
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Loading...