Tagged Questions
The fuzzy-search tag has no wiki summary.
24
votes
5answers
9k views
fuzzy string search in Java
I'm looking for high performance Java library for fuzzy string search.
There are numerous algorithms to find similar strings, Levenshtein distance, Daitch-Mokotoff Soundex, n-grams etc.
What Java ...
21
votes
4answers
716 views
Real world typo statistics?
Where can I find some real world typo statistics?
I'm trying to match people's input text to internal objects, and people tend to make spelling mistakes.
There are 2 kinds of mistakes:
typos - ...
12
votes
4answers
484 views
What's textmate's 'Go to File' fuzzy search algorithm?
Textmate's 'go to file' fuzzy search is really awesome.
Wincent's Command-T plugin for vim does something similar and it rocks too.
Can someone explain how these work? Is there a general term for ...
12
votes
6answers
578 views
Super fuzzy name checking?
I'm working on some stuff for an in-house CRM. The company's current frontend allows for lots of duplicates. I'm trying to stop end-users from putting in the same person because they searched for ...
12
votes
3answers
9k views
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 from 0 to 1:
/// <summary>
/// Gets the similarity between two ...
9
votes
7answers
2k views
Lightweight fuzzy search library
Can you suggest some light weight fuzzy text search library?
What I want to do is to allow users to find correct data for search terms with typos.
I could use full-text search engines like Lucene, ...
8
votes
5answers
4k views
Levenshtein distance based methods Vs Soundex
As per this comment in a related thread, I'd like to know why Levenshtein distance based methods are better than Soundex.
7
votes
2answers
211 views
Remove an item from a Set that doesn't match criteria
For a school project, the goal is to do a fuzzy match of a query string to a lyric string inside a Song object. The overall data structure is a TreeMap of unique words paired with sets of songs that ...
7
votes
6answers
10k views
Fuzzy matching using T-SQL
I have a table Persons with personaldata and so on. There are lots of columns but the once of interest here are: addressindex, lastname and firstname where addressindex is a unique address drilled ...
7
votes
3answers
4k views
Best Fuzzy Matching Algorithm?
What is the best Fuzzy Matching Algorithm (Fuzzy Logic, N-Gram, Levenstein, Soundex ....,) to process more than 100000 records in less time?
7
votes
7answers
4k views
How to find best fuzzy match for a string in a large string database
I have a database of strings (arbitrary length) which holds more than one million items (potentially more).
I need to compare a user-provided string against the whole database and retrieve an ...
6
votes
4answers
197 views
Find a series of data using non-exact measurements (fuzzy logic)
This is a more complex follow-up question to: Efficient way to look up sequential values
Each Product can have many Segment rows (thousands). Each segment has position column that starts at 1 for ...
6
votes
2answers
464 views
Advice on how to improve a current fuzzy search implementation
I'm currently working on implementing a fuzzy search for a terminology web service and I'm looking for suggestions on how I might improve the current implementation. It's too much code to share, but I ...
6
votes
4answers
2k views
Algorithms for “fuzzy matching” strings
By fuzzy matching I don't mean similar strings by Levenshtein distance or something similar, but the way it's used in TextMate/Ido/Icicles: given a list of strings, find those which include all ...
5
votes
2answers
233 views
Fuzzy String Searching with Whoosh in Python
I've built up a large database of banks in MongoDB. I can easily take this information and create indexes with it in whoosh. For example I'd like to be able to match the bank names 'Eagle Bank & ...
5
votes
3answers
512 views
How can I do fuzzy substring matching in Ruby?
I found lots of links about fuzzy matching, comparing one string to another and seeing which gets the highest similarity score.
I have one very long string, which is a document, and a substring. The ...
5
votes
2answers
280 views
Fast Dynamic Fuzzy search over 100k+ strings in C#
Let's say they are pre-loaded stock symbols, typed into a text box. I am looking for code that I can copy, not a library to install.
This was inspired by this question:
Are there any Fuzzy Search or ...
4
votes
3answers
87 views
approximate search in a database
I have a large database with a list of institutions (universities, hospitals, etc). The names of institutions come from different sources and can be spelled differently for the same institution. They ...
4
votes
3answers
515 views
Fuzzy string search in Java, including word swaps
I am a Java beginner, trying to write a program that will match an input to a list of predefined strings. I have looked at Levenshtein distance, but I have come to problems such as this:
If I have ...
4
votes
2answers
1k views
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 use it I get the error:
function similarity(character varying, unknown) does not exist
...
4
votes
4answers
11k views
How do I do a fuzzy match of company names in MYSQL with PHP for auto-complete?
My users will import through cut and paste a large string that will contain company names.
I have an existing and growing MYSQL database of companies names, each with a unique company_id.
I want to ...
3
votes
2answers
126 views
How to create simple fuzzy search with Postgresql only?
I have a little problem with search functionality on my RoR based site. I have many Produts with some CODEs. This code can be any string like "AB-123-lHdfj". Now I use ILIKE operator to find products:
...
3
votes
1answer
197 views
fuzzy matching an address using mysql's match against (if possible using weights for better results ranking)
I have a myISAM table with FULLTEXT index , trying to do
SELECT
lk.id,
lk.address
FROM
lk
WHERE MATCH
lk.address
AGAINST('235 regent street, london w1b 2et');
I get results ...
3
votes
2answers
359 views
Inexact full-text search in PostgreSQL and Django
I'm new to PostgreSQL, and I'm not sure how to go about doing an inexact full-text search. Not that it matters too much, but I'm using Django. In other words, I'm looking for something like the ...
3
votes
3answers
102 views
most efficient way to go about identifying sub-strings in a string in python?
i need to search a fairly lengthy string for CPV (common procurement vocab) codes.
at the moment i'm doing this with a simple for loop and str.find()
the problem is, if the CPV code has been listed ...
3
votes
2answers
350 views
Fuzzy search algorithm for western European languages (in my case Swedish)
I'm looking for a fuzzy search implementation that works well with western European languages.
Which algorithm works the best and where can I find an implementation in C#?
Update
Soundex adapted ...
3
votes
2answers
2k views
Lucene Fuzzy Match on Phrase instead of Single Word
I'm trying to do a fuzzy match on the Phrase "Grand Prarie" (deliberately misspelled) using Apache Lucene. Part of my issue is that the ~ operator only does fuzzy matches on single word terms and ...
3
votes
2answers
1k views
PHP/MySQL small-scale fuzzy search
I'm looking to implement fuzzy search for a small PHP/MySQL application. Specifically, I have a database with about 2400 records (records added at a rate of about 600 per year, so it's a small ...
3
votes
3answers
255 views
Whats the easiest site search application to implement, that supports fuzzy searching?
I have a site that needs to search thru about 20-30k records, which are mostly movie and TV show names. The site runs php/mysql with memcache.
Im looking to replace the FULLTEXT with soundex() ...
3
votes
7answers
3k views
How to do fuzzy string search without a heavy database?
I have a mapping of catalog numbers to product names:
35 cozy comforter
35 warm blanket
67 pillow
and need a search that would find misspelled, mixed names like "warm cmfrter".
We have code ...
3
votes
4answers
774 views
How to find “FooBar” when seaching “Foo Bar” in Zend Lucene
I'm building a search function for a php website using Zend Lucene and i'm having a problem.
My web site is a Shop Director (something like that).
For example i have a shop named "FooBar" but my ...
2
votes
1answer
56 views
How to implement a complex token-matching algorithm in SOLR
Problem Description
I'm trying to implement a custom algorithm to match user provided free-text input, a company name such as "Ford Motor", against a reference data source consisting of 1.4 million ...
2
votes
1answer
123 views
Fuzzy Text Matching C#
I'm writing a desktop UI (.Net WinForms) to assist a photographer clean up his image meta data. There is a list of 66k+ phrases. Can anyone suggest a good open source/free .NET component I can use ...
2
votes
1answer
86 views
Algorithm to find a user match on fuzzy @username
I'm sure I saw a post on Meta or SO where Jeff posted the upgraded algorithm which matches comments better, for example when someone types a comment:
@Tom did you see
It will match username 'Tom'. ...
2
votes
1answer
87 views
How to solve the 2D matching problem with pattern matching with don't cares?
I think I understand the Fischer & Paterson algorithm for pattern matching with "don't cares" shown here:
http://u.cs.biu.ac.il/~amir/AlgII/fp-set1.html
However, as I understood it is possible to ...
2
votes
1answer
287 views
elasticsearch fuzzy matching max_expansions & min_similarity
I'm using fuzzy matching in my project mainly to find misspellings and different spellings of the same names. I need to exactly understand how the fuzzy matching of elastic search works and how it ...
2
votes
2answers
125 views
fuzzy searching an array in php
after i searched i found how to do a fuzzy searching on a string
but i have an array of strings
$search = {"a" => "laptop","b" => "screen" ....}
that i retrieved from the DB MySQL
IS there ...
2
votes
3answers
71 views
Inexact searching for nearest time value
I'm looking for a programmatically and syntactically efficient way to go about searching for a value based on a Timestamp. Essentially I want to find the closest timestamp match...
Say for example in ...
2
votes
1answer
89 views
Whats the best way to Parse a Lexicon and show a large amount of matches using wild cards
My problem is, I have a lexicon of about 200,000 words or so. The file is 1.8mbs in size. I want input from a user, say **id, and I want to show all possible matches, where * can be any letter A-Z. ...
2
votes
1answer
640 views
How to get Lucene Fuzzy Search result 's matching terms?
how do you get the matching fuzzy term and its offset when using Lucene Fuzzy Search?
IndexSearcher mem = ....(some standard code)
QueryParser parser = new QueryParser(Version.LUCENE_30, ...
2
votes
2answers
625 views
is lucene fuzzy search lazy?
I would like to use Lucene's fuzzy search, which I understand is based on some sort of Levenshtein-like algorithm. If I use a fairly high threshold (i.e, "new york~0.9"), will it first compute the ...
2
votes
3answers
334 views
How to quickly find file in the workspace/switch between buffers/etc. in Eclipse?
I am looking for something like Textmate's fuzzy search on Command-T, FuzzyFinder in Vim, or Ido in Emacs. Does it exist? If no, how do you prefer to do it?
2
votes
3answers
335 views
“Go to file” feature in various editors
In TextMate there is a feature called "Go to file" that is used for file navigation. It is a box where you type the name of a file in your project and it will use fuzzy matching to generate a list of ...
2
votes
1answer
717 views
Finding a fuzzy match with bitap algorithm
Reciently I've looked through several implementation of bitap algorithm but what all of them do is finding the beginning point of fuzzy match. What I need is to find a match. There's an example:
Say ...
1
vote
1answer
116 views
maximum chars in Solr/lucene term for fuzzy match
I am trying to experiment fuzzy match with Solr.
In my document indexed first_name field I mentioned as "MYNEWORGANIZATION20SEP2011" - actually the word was "My New Organization 20-Sep-2011" but I ...
1
vote
1answer
130 views
Fuzzy sentence search algorithms
Suppose I have a set of phrases - about 10 000 - of average length - 7-20 words in which I want to find some given phrase. The phrase I am looking for could have some errors - for example miss one or ...
1
vote
1answer
110 views
Looking for a better javascript text-matching scoring system
I've been using String Score for a lot of projects. It's great for sorting lists, like names, countries, etc.
Right now, I'm working on a project where I want to match a term against a bigger set of ...
1
vote
1answer
76 views
Solr Server-Side Query-Preprocessing
I want solr to do a fuzzy search and also find the query as subword. Matches of complete words shall be prefered.
This works well with the following query:
...
1
vote
1answer
112 views
How can I perform a fuzzy search for all words provided in a Lucene.net search
I am trying to teach myself Lucene.Net to implement on my site. I understand how to do almost everything I need except for one issue. I am trying to figure out how to allow a fuzzy search for all ...
1
vote
3answers
170 views
Is there any implementation of this string matching method in python?
I am trying to work out which entries in my data store are near-duplicates using approximate string matching.
Is there any implementation of the following approach in python, or do i need to try and ...