SoundEx algorithm

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

SoundEx algorithm

Rob Rothwell
Does anyone know of a SoundEx algorithm in Squeak before I go write one myself?

Never hurts to ask!

Rob

_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: SoundEx algorithm

Matthias Berth-2
http://www.visoracle.com/squeak/faq/string-search.html :)

On Mon, Jan 12, 2009 at 10:38 PM, Rob Rothwell <[hidden email]> wrote:

> Does anyone know of a SoundEx algorithm in Squeak before I go write one
> myself?
>
> Never hurts to ask!
>
> Rob
>
> _______________________________________________
> Beginners mailing list
> [hidden email]
> http://lists.squeakfoundation.org/mailman/listinfo/beginners
>
>
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: SoundEx algorithm

Rob Rothwell
Thanks...I also found several other language versions...pretty well thought out at:

http://www.creativyst.com/Doc/Articles/SoundEx1/SoundEx1.htm; so I should be able to get started!

Rob

On Mon, Jan 12, 2009 at 4:53 PM, Matthias Berth <[hidden email]> wrote:
http://www.visoracle.com/squeak/faq/string-search.html :)

On Mon, Jan 12, 2009 at 10:38 PM, Rob Rothwell <[hidden email]> wrote:
> Does anyone know of a SoundEx algorithm in Squeak before I go write one
> myself?
>
> Never hurts to ask!
>
> Rob
>
> _______________________________________________
> Beginners mailing list
> [hidden email]
> http://lists.squeakfoundation.org/mailman/listinfo/beginners
>
>


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

RE: SoundEx algorithm

Ron Teitelbaum
In reply to this post by Rob Rothwell

I did one but didn’t release it anywhere.  I did metaphone and double metaphone.

 

Maybe I can dig it up.  When did you need it?

 

Ron Teitelbaum

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Monday, January 12, 2009 4:39 PM
To: Beginners Sqeak
Subject: [Newbies] SoundEx algorithm

 

Does anyone know of a SoundEx algorithm in Squeak before I go write one myself?

Never hurts to ask!

Rob


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: SoundEx algorithm

Rob Rothwell
No rush...I am working on a custom recipe program for my wife and wanted to use it to search ingredients and still find something that was misspelled!

Thanks,

Rob

On Thu, Jan 15, 2009 at 10:10 PM, Ron Teitelbaum <[hidden email]> wrote:

I did one but didn't release it anywhere.  I did metaphone and double metaphone.

 

Maybe I can dig it up.  When did you need it?

 

Ron Teitelbaum

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Monday, January 12, 2009 4:39 PM
To: Beginners Sqeak
Subject: [Newbies] SoundEx algorithm

 

Does anyone know of a SoundEx algorithm in Squeak before I go write one myself?

Never hurts to ask!

Rob



_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

SoundsLike package released on SqueakSource

Ron Teitelbaum

Hello all,

 

I have released a new package on SqueakSource that contains SoundEx and DoubleMetaphone. 

 

http://www.squeaksource.com/SoundsLike.html

 

This package adds soundsLike: to string

 

‘titlebalm’ soundsLike: ‘teitelbaum’

 

You can also get the phenoticStringsFor: a word to store in a database for later queries. 

 

PhoneticStringComparator defaultClass “SoundEx” new phoneticStringsFor: 'titlebalm' #('T341')

 

DoubleMetaphoneStringComparator new phoneticStringsFor: 'teitelbaum' #('TTLPM' 'TTLPM')

 

Let me know if you have any questions.

 

Regards,

 

Ron Teitelbaum

 

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Friday, January 16, 2009 6:35 AM
To: [hidden email]
Cc: A friendly place to get answers to even the most basic questionsaboutSqueak.
Subject: Re: [Newbies] SoundEx algorithm

 

No rush...I am working on a custom recipe program for my wife and wanted to use it to search ingredients and still find something that was misspelled!

Thanks,

Rob

On Thu, Jan 15, 2009 at 10:10 PM, Ron Teitelbaum <[hidden email]> wrote:

I did one but didn't release it anywhere.  I did metaphone and double metaphone.

 

Maybe I can dig it up.  When did you need it?

 

Ron Teitelbaum

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Monday, January 12, 2009 4:39 PM
To: Beginners Sqeak
Subject: [Newbies] SoundEx algorithm

 

Does anyone know of a SoundEx algorithm in Squeak before I go write one myself?

Never hurts to ask!

Rob

 


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: SoundsLike package released on SqueakSource

Rob Rothwell
Thanks!

Rob

On Fri, Jan 16, 2009 at 10:02 AM, Ron Teitelbaum <[hidden email]> wrote:

Hello all,

 

I have released a new package on SqueakSource that contains SoundEx and DoubleMetaphone. 

 

http://www.squeaksource.com/SoundsLike.html

 

This package adds soundsLike: to string

 

'titlebalm' soundsLike: 'teitelbaum'

 

You can also get the phenoticStringsFor: a word to store in a database for later queries. 

 

PhoneticStringComparator defaultClass "SoundEx" new phoneticStringsFor: 'titlebalm' #('T341')

 

DoubleMetaphoneStringComparator new phoneticStringsFor: 'teitelbaum' #('TTLPM' 'TTLPM')

 

Let me know if you have any questions.

 

Regards,

 

Ron Teitelbaum

 

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Friday, January 16, 2009 6:35 AM
To: [hidden email]
Cc: A friendly place to get answers to even the most basic questionsaboutSqueak.
Subject: Re: [Newbies] SoundEx algorithm

 

No rush...I am working on a custom recipe program for my wife and wanted to use it to search ingredients and still find something that was misspelled!

Thanks,

Rob

On Thu, Jan 15, 2009 at 10:10 PM, Ron Teitelbaum <[hidden email]> wrote:

I did one but didn't release it anywhere.  I did metaphone and double metaphone.

 

Maybe I can dig it up.  When did you need it?

 

Ron Teitelbaum

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Monday, January 12, 2009 4:39 PM
To: Beginners Sqeak
Subject: [Newbies] SoundEx algorithm

 

Does anyone know of a SoundEx algorithm in Squeak before I go write one myself?

Never hurts to ask!

Rob

 



_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

RE: SoundsLike package released on SqueakSource

Ron Teitelbaum

You are welcome.  I hope you find it useful.

 

Ron

 


From: Rob Rothwell [mailto:[hidden email]]
Sent: Friday, January 16, 2009 11:15 AM
To: [hidden email]
Cc: A friendly place to get answers to even the most basic questionsabout Squeak.; [hidden email]; The general-purpose Squeak developers list
Subject: Re: SoundsLike package released on SqueakSource

 

Thanks!

Rob

On Fri, Jan 16, 2009 at 10:02 AM, Ron Teitelbaum <[hidden email]> wrote:

Hello all,

 

I have released a new package on SqueakSource that contains SoundEx and DoubleMetaphone. 

 

http://www.squeaksource.com/SoundsLike.html

 

This package adds soundsLike: to string

 

'titlebalm' soundsLike: 'teitelbaum'

 

You can also get the phenoticStringsFor: a word to store in a database for later queries. 

 

PhoneticStringComparator defaultClass "SoundEx" new phoneticStringsFor: 'titlebalm' #('T341')

 

DoubleMetaphoneStringComparator new phoneticStringsFor: 'teitelbaum' #('TTLPM' 'TTLPM')

 

Let me know if you have any questions.

 

Regards,

 

Ron Teitelbaum

 

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Friday, January 16, 2009 6:35 AM
To: [hidden email]
Cc: A friendly place to get answers to even the most basic questionsaboutSqueak.
Subject: Re: [Newbies] SoundEx algorithm

 

No rush...I am working on a custom recipe program for my wife and wanted to use it to search ingredients and still find something that was misspelled!

Thanks,

Rob

On Thu, Jan 15, 2009 at 10:10 PM, Ron Teitelbaum <[hidden email]> wrote:

I did one but didn't release it anywhere.  I did metaphone and double metaphone.

 

Maybe I can dig it up.  When did you need it?

 

Ron Teitelbaum

 


From: [hidden email] [mailto:[hidden email]] On Behalf Of Rob Rothwell
Sent: Monday, January 12, 2009 4:39 PM
To: Beginners Sqeak
Subject: [Newbies] SoundEx algorithm

 

Does anyone know of a SoundEx algorithm in Squeak before I go write one myself?

Never hurts to ask!

Rob

 

 


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners