Top "Fuzzy-search" questions

A search mechanism where the objective is to find all approximate, relevant or possibly relevant results for the search-key rather than finding an exact match.

Combine LIKE and CONTAINS in SAP HANA

Consider the following entries in my table: red apple yellow apple apple green red aple appel yellow Several people have …

sql sap fuzzy-search hana hana-studio
How can I create an index with pymongo

I want to enable text-search at a specific field in my Mongo DB. I want to implement this search in …

mongodb indexing pymongo fuzzy-search text-search
Similarity function in Postgres with pg_trgm

I'm trying to use the similarity function in Postgres to do some fuzzy text matching, however whenever I try to …

sql postgresql fuzzy-search
Fuzzy Search in Solr

I am working on a a fuzzy query using Solr, which goes over a repository of data which could have …

solr fuzzy-search
Solr Fuzzy Search for similar words

I am trying to do a fuzzy search for "jahngir" ~ 0.2, which does not return any results. My indexes has records …

solr fuzzy-search
How can I match fuzzy match strings from two datasets?

I've been working on a way to join two datasets based on a imperfect string, such as a name of …

r string-matching fuzzy-search fuzzy-comparison
Fuzzy text (sentences/titles) matching in C#

Hey, I'm using Levenshteins algorithm to get distance between source and target string. also I have method which returns value …

c# algorithm string fuzzy-search
Checking fuzzy/approximate substring existing in a longer string, in Python?

Using algorithms like leveinstein ( leveinstein or difflib) , it is easy to find approximate matches.eg. >>> import difflib &…

python python-2.7 fuzzy-search
Is it possible to perform T-SQL fuzzy lookup without SSIS?

SSIS 2005/2008 does fuzzy lookups and groupings. Is there a feature that does the same in T-SQL?

sql-server tsql ssis fuzzy-search
Python Fuzzy Matching (FuzzyWuzzy) - Keep only Best Match

I'm trying to fuzzy match two csv files, each containing one column of names, that are similar but not the …

python string-matching fuzzy-search fuzzywuzzy