Questions tagged [soundex]

Soundex is an phonetic algorithm for indexing names based on their pronunciation in spoken English.

Soundex is a phonetic algorithm for indexing names by sound, as pronounced in English. The goal is for homophones to be encoded to the same representation so that they can be matched despite minor differences in spelling.

Soundex is the most widely known of all phonetic algorithms mainly because it is a standard feature of popular database software (such as MySQL, MS SQL Server and Oracle) and some programming languages (such as PHP).

Soundex was developed by Robert C. Russell and Margaret K. Odell and patented in 1918 and 1922

Articles

159 questions
-1
votes
1 answer

How to use Soundex() in googlecolab for python?

I do coding using Python I tried to use soundex() in googlecolab by importing fuzzy . But I can not use . Pl. guide
-1
votes
1 answer

Improve performance while using levenshtein and soundex algorithms on search in MySQL

We are trying to upload data from Excel to Database. Before uploading, we would like to preview the data with the count of Match status(Eg: No match, Similar match, Exact match) while comparing with our database. The below query is taking 3 minutes…
-1
votes
1 answer

What is the best way to implement a mongo db search that handles misspelled words?

For example I want "wolrd" to return documents with "world" .
You Ma
  • 189
  • 1
  • 12
-1
votes
1 answer

Handle incorrect spelling of user defined names in python application

Problem with incorrect spelling : When you are making an application with user input, you may expect incorrect input. There are spell check libraries available to handle them, however user defined data may not be present in dictionary. For…
Bidya
  • 179
  • 2
  • 11
-1
votes
1 answer

How to start reading lines from text from beginning again?

So i have a scanner that reads through a text file of many lines using while(file.hasNext()), however after it reaches the end of the text file how do I make it so that I can start reading lines from the beginning again for a separate while loop?
Tanmim Hanifa
  • 73
  • 1
  • 1
  • 9
-1
votes
1 answer

MySQL, how to handle name variants? How to check if a value is included in a string?

I'm working on a project involving PHP and MySQL. I admit that I'm pretty new to both. I have a table that has some company names, let's say CocaCola, if the user searches CocaCola, I have to read some info from the table. My question is, how can I…
FrCr
  • 263
  • 7
  • 19
-1
votes
1 answer

Mysql Soundex in VB.NET format

I have these lines of codes and Im trying to look into my database for soundex results but apparently it's not returning any result. con.Open() Try Dim query As String query = "SELECT * FROM table_name WHERE column_name LIKE…
slverstone
  • 115
  • 11
-1
votes
1 answer

Mysql Equivalent of php metaphone and soundex

I am working on an app where user's current playing song title is fetched and we look in the mysql database to see who else is playing a similar song.since the same song might be with many varied titles on everyone's phone , we need a way to…
-1
votes
2 answers

Java: Using the Soundex Algorithm for a huge Database

I have been using the Soundex Algorithm, which I found ready in Java http://introcs.cs.princeton.edu/java/31datatype/Soundex.java.html . The main use of the program is to ready a .cvs file and then after it saves its entries into arrays, it checks…
Dimitra Micha
  • 2,089
  • 8
  • 27
  • 31
1 2 3
10
11