Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 77 results for
soundex
- Page 1
Soundex Code to a Base 7 number conversion
Programming
Software Development
18 Years Ago
by stupidenator
… will construct a hash table for dictionary words, using the
soundex
code of the word as the hash function. For the… I know so far: there are 26*7^4 possible
soundex
codes (which is 62426) Can anyone help me to understand… how to convert the
soundex
code (i.e. "T5600") into an integer? Thank…
Re: Access Database + Soundex(Sound like Query)
Programming
Software Development
15 Years Ago
by dkmansion
…names values ('ritu') select * from names where
soundex
(name) =
soundex
('reetu') [/code] OUTPUT- [code] ritu [/code…returns a 4-digit ' code representing the Russell
Soundex
code. ' In: ' varSurName: A surname …number of output chars 'Loop until the
soundex
code is of acbcSoundexLength 'or we have…
SAS Code for Soundex function
Programming
Computer Science
12 Years Ago
by rslepoy
Hi, I am using the
SOUNDEX
function in SAS to count names. My data… I would like to modify the code for the
soundex
function to include the letter H. I would like…please send me the modified sas code for
soundex
that groups H into the # group. Currently, the…
soundex
function uses this formula: 1. B, P, F, …
Access Database + Soundex(Sound like Query)
Programming
Software Development
16 Years Ago
by sonia sardana
hi i want to know that how to use sound like query in VB.net with access. EXAMPLE (SQL) - [code] create table names (name varchar(100)) insert into names values ('ritu') select * from names where
soundex
(name) =
soundex
('reetu') [/code] OUTPUT- [code] ritu [/code]
Re: Access Database + Soundex(Sound like Query)
Programming
Software Development
16 Years Ago
by Teme64
AFAIK MS Access does not have a built-in
Soundex
function. You have to write your own. Here's an article from MSDN: [URL="http://msdn.microsoft.com/en-us/library/aa662178(office.11).aspx"]Building Microsoft Access Applications[/URL] with VB (VBA?) code for
Soundex
function. See if it's for any help.
Help writing code based on the soundex algorithm
Programming
Software Development
16 Years Ago
by Tris1
… homework, we have to write a code based on the
Soundex
algorithm that is used by New York State Immunization Information…
Help with Soundex issue!
Programming
Software Development
12 Years Ago
by izabella.pearson
… of the program is to convert and inputted name into
soundex
code! here is my code: #include <iostream> #include…
Re: Soundex Code to a Base 7 number conversion
Programming
Software Development
18 Years Ago
by Rashakil Fol
[url]http://eternallyconfuzzled.com/tuts/hashing.html[/url]
Re: Soundex Code to a Base 7 number conversion
Programming
Software Development
18 Years Ago
by stupidenator
Thank you! That tutorial helped out a lot!
Re: Help writing code based on the soundex algorithm
Programming
Software Development
16 Years Ago
by brianlevine
Scanner implements the Iterator interface. So you have to use next() to go to the next element somewhere inside your while loops. In other words the scanner is checking to see if there are more elements left. But you never move to the next element in your code.
Re: Help writing code based on the soundex algorithm
Programming
Software Development
16 Years Ago
by Tris1
But where would I put that piece of code? I'm confused basically on how the loops should interact with each other. I have a loop that recoded the first letter of the letter but how would I implement the other loops to finish recoding the name?
Re: Why aren't more echos being executed?
Programming
Web Development
12 Years Ago
by dancks
… did. results: begin search if name begin gsq
Soundex
: SELECT *,
SOUNDEX
('squat rack') AS src,
SOUNDEX
(item_name) AS src2, 'squat rack' SOUNDS LIKE….2 begin ssr in sort
soundex
beginning of loop in sort
soundex
beginning of loop in sort
soundex
beginning of loop in sort…
Some question i cannot solve with C++
Programming
Software Development
13 Years Ago
by spothao
… | |2|2| | |3|0| | |4|0| | |5|2| | Q5
SOUNDEX
Soundex
coding groups together words that appear to sound alike based…“con” and “gone” would be equivalent under
Soundex
coding.
Soundex
coding involves translating each word into a series of …input, produce a line of output giving the
Soundex
code. Example 1 Sample Input KHAWN Sample …
Why aren't more echos being executed?
Programming
Web Development
12 Years Ago
by dancks
… as str, %s as member",$str,$member)); echo "
Soundex
: ".$ss; return $q; } function sort_mysql_results() { $match=array(); $c_match=0… just 'category', etc. result from running the PHP:
Soundex
: SELECT *,
SOUNDEX
('squat rack') AS src,
SOUNDEX
(item_name) AS src2, 'squat rack' SOUNDS LIKE…
Segmentation Fault
Programming
Software Development
19 Years Ago
by stupidenator
…#include <iostream> using namespace std; char*
soundex
(const char word[]); // prototype // possibly need '&' …quot; << endl; } return 0; } // function
soundex
// input: a const char[] named word // output: none // … the word // output: none // return: the
soundex
translation of the letter // This is just the …
Re: Segmentation Fault
Programming
Software Development
19 Years Ago
by stupidenator
…include <iostream> using namespace std; char*
soundex
(const char word[]); // prototype // possibly need '&'…quot; << endl; } return 0; } // function
soundex
// input: a const char[] named word // output: none // … the word // output: none // return: the
soundex
translation of the letter // This is just the …
Re: Why aren't more echos being executed?
Programming
Web Development
12 Years Ago
by dancks
…gsq\n"; $ss = sprintf("SELECT *,
SOUNDEX
('%s') AS src,
SOUNDEX
(%s) AS src2",$str,$member); $ss =…member); $q = mysql_query($ss) or die("
Soundex
query function:\n".mysql_error().sprintf("\nWith %s…member",$str,$member)); echo "<p>
Soundex
: ".$ss."</p>"; return $…
Segmentation Fault - Need help correcting
Programming
Software Development
17 Years Ago
by Arctic
…array // OUTPUT - none // RETURN - a char array char *
soundex
(const char word[],char sound[]); int main() { char sound[40…input 10 words you would like to know the
soundex
code of"<<endl; for(int… word[] to the digits 0-6 depending on their
soundex
coding - note because of the for loop this only…
Re: Why aren't more echos being executed?
Programming
Web Development
12 Years Ago
by dancks
…])); } } result: begin search if name begin gsq
Soundex
: SELECT *,
SOUNDEX
('squat rack') AS src,
SOUNDEX
(item_name) AS src2, 'squat rack' SOUNDS LIKE item_name…
Re: Segmentation Fault - Need help correcting
Programming
Software Development
17 Years Ago
by vijayan121
[CODE]char*
soundex
( const char word[], char sound[] ) { // ... sound="Z0000"; // *** trouble **** // ... }[/…
fuzzy matching
Programming
Software Development
14 Years Ago
by faintfascinatio
… records that match 80% and greater. I have also tried
soundex
but I do not think that it would be accurate… just tried a different approach that may work... I use
soundex
again, but instead of matching the whole name, I take… is there a way to match numbers? I cannot use
soundex
to match on birthdate or social.
i need help using getlien and strtok, any ideas?
Programming
Software Development
16 Years Ago
by mampam
… to eliminate these delimiters (" ,.-") and then find the
soundex
code of each word and insert the words into my…, " ,.-"); fin >> c; while(!fin.eof()) { code =
soundex
(c); cout << c << " "<…
Re: fuzzy matching
Programming
Software Development
14 Years Ago
by kvprajapati
Try [URL="http://msdn.microsoft.com/en-us/library/ms187384.aspx"]
SOUNDEX
[/URL] and [URL="http://msdn.microsoft.com/en-us/library/ms188753.aspx"]DIFFERENCE[/URL].
Re: Need help with search script!
Programming
Web Development
19 Years Ago
by ashneet
… $query = "SELECT * FROM stories WHERE
SOUNDEX
(title) =
SOUNDEX
('$keyword') OR
SOUNDEX
(author) =
SOUNDEX
('$keyword') OR
SOUNDEX
(content) =
SOUNDEX
('$keyword'); $result = mysql_query($query) or die("…
Re: How would I write this regular expression?
Programming
Web Development
12 Years Ago
by diafol
How about knocking up something with
soundex
()? That *should* match many similar sounding spelling mistakes. …really well on single words: SELECT job_id, message,
SOUNDEX
('squat') AS search,
SOUNDEX
(message) AS msg, 'squat' SOUNDS LIKE message …with: sgwhat, skwott, sqwatt It should be noted that
SOUNDEX
() works with English words and A-Z/a-z. …
Re: How would I write this regular expression?
Programming
Web Development
12 Years Ago
by diafol
…){ preg_match_all('/\b([\w]*)\b/',$str,$m); $arr = array_filter(array_map("
soundex
",$m[1])); return ($return_as_array) ? $arr : implode(" ", …$res = mysql_query(search($input,10)); //SORT OUT EXISTING ROWS WITHOUT
SOUNDEX
COL DATA $result = mysql_query("SELECT description FROM table WHERE…
Re: change words with similar words
Programming
Software Development
17 Years Ago
by Miyuki
You should consider making a
soundex
class. [URL="http://en.wikipedia.org/wiki/
Soundex
"]http://en.wikipedia.org/wiki/
Soundex
[/URL] This should help more than using regex.
Re: How would I write this regular expression?
Programming
Web Development
12 Years Ago
by dancks
… a hard time understanding your suggestion. I never heard of
SOUNDEX
before and your sample SQL statement doesn't make sense…) I tried the following: mysql> SELECT ItemID,item_name,
SOUNDEX
('squat') AS search,
SOUNDEX
(item_name) as msg, 'squat' SOUNDS LIKE item_name AS…
Re: How would I write this regular expression?
Programming
Web Development
12 Years Ago
by diafol
… be better. It's similar to
soundex
() but seems more accurate. The problem with
soundex
is that it only goes so far…']); $res = mysql_query(search($input,10)); //SORT OUT EXISTING ROWS WITHOUT
SOUNDEX
COL DATA $result = mysql_query("SELECT description FROM table WHERE…
Re: Why are there so many languages?
Programming
Computer Science
19 Years Ago
by Lord Soth
… stripped out of company names, and then throwing up a
soundex
-like search through a CSV file for similar words and… CSV just use the Excel as a parser it has
soundex
too. You can set up Telnet accessible net services ( or…
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC