-
Suggestion from @mattb: our OCRd text has lots of flaky badly spelled words in. Try indexing a version of it that consists of the words run through `soundex()` - then try a search implementation that …
-
Would it be possible to implement something like this in Realm?
```
SELECT * FROM table WHERE name SOUNDS LIKE 'foo' ;
```
-
The Treasury's UI also calculates the score used with the phonetic based algorithm Soundex.
https://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/fuzzy_logic.aspx
This algo should be s…
-
More information on fuzzy Soundex available from http://wayback.archive.org/web/20100629121128/http://www.ir.iit.edu/publications/downloads/IEEESoundexV5.pdf
-
Creating soundex tables... Done
DBD::mysql::db do failed: Table 'ngs_final.album' doesn't exist at src/functions.pl line 92.
SQL: 'insert into album_soundex select id, soundex(name) from album'
It t…
-
SQL:
-- MTG Json comparissons
-- different CMC
select c.CMC as 'Cards CMC', mjc.CMC as 'MTG Json CMC', c.Name, c.CardId, e.Name
from MtgJsonCards mjc, MtgJsonSets mjs, Cards c, Editions e
where…
-
**Reported by paparazzia on 29 Oct 2010 20:29 UTC**
La plupart des double inscriptions VLM peuvent tre dtectes en scorant les playername ou les email avec la prononciation phontique.
De quoi aliment…
-
Please answer these questions before submitting your issue. Thanks!
1. What did you do?
```
create table t1 (id integer, a varchar(100) character set utf8 collate utf8_unicode_ci);
insert int…
-
Issue copied from:
https://github.com/mrmap-community/Mapbender2.8/issues/55
For the fuzzy search, there are some algorithm like levenshtein, soundex, word_similarity and so on.
https://www.pos…
-
Postgres provides the [fuzzystrmatch](https://www.postgresql.org/docs/9.1/fuzzystrmatch.html) module, which includes several useful functions:
- [x] `levenshtein`, to calculate levenshtein distance…