Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Comparing 2 similar strings?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 32 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
William Park  
View profile  
 More options May 18 2005, 3:48 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: William Park <opengeome...@yahoo.ca>
Date: Wed, 18 May 2005 15:48:32 -0400
Local: Wed, May 18 2005 3:48 pm
Subject: Comparing 2 similar strings?
How do you compare 2 strings, and determine how much they are "close" to
each other?  Eg.
    aqwerty
    qwertyb
are similar to each other, except for first/last char.  But, how do I
quantify that?

I guess you can say for the above 2 strings that
    - at max, 6 chars out of 7 are same sequence --> 85% max

But, for
    qawerty
    qwerbty
max correlation is
    - 3 chars out of 7 are the same sequence --> 42% max

(Crossposted to 3 of my favourite newsgroup.)

--
William Park <opengeome...@yahoo.ca>, Toronto, Canada
ThinFlash: Linux thin-client on USB key (flash) drive
           http://home.eol.ca/~parkw/thinflash.html


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jürgen Kahrs  
View profile  
 More options May 18 2005, 4:05 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: Jürgen Kahrs <Juergen.KahrsNO_S...@vr-web.de>
Date: Wed, 18 May 2005 22:05:31 +0200
Local: Wed, May 18 2005 4:05 pm
Subject: Re: Comparing 2 similar strings?
Hello William,

> How do you compare 2 strings, and determine how much they are "close" to
> each other?  Eg.
>     aqwerty
>     qwertyb
> are similar to each other, except for first/last char.  But, how do I
> quantify that?

This is a classic problem of computer science.
Watch this:

  http://odur.let.rug.nl/~kleiweg/lev/
  http://www.levenshtein.net/

This solution has application in speech
recognition and also in DNA research.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Morton  
View profile  
 More options May 18 2005, 4:06 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: Ed Morton <mor...@lsupcaemnt.com>
Date: Wed, 18 May 2005 15:06:53 -0500
Local: Wed, May 18 2005 4:06 pm
Subject: Re: Comparing 2 similar strings?

"However you like" is probably the right answer, but one way might be to
compare their soundex encoding
(http://foldoc.doc.ic.ac.uk/foldoc/foldoc.cgi?soundex) and figure out
percentage difference based on comparing the numeric part.

        Ed.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 18 2005, 4:38 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Thu, 19 May 2005 06:38:59 +1000
Local: Wed, May 18 2005 4:38 pm
Subject: Re: Comparing 2 similar strings?
On Wed, 18 May 2005 15:06:53 -0500, Ed Morton <mor...@lsupcaemnt.com>
wrote:

Fantastic suggestion. Here's a tiny piece of real-life test data:

compare the surnames "Mousaferiadis" and "McPherson".


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Don  
View profile  
 More options May 18 2005, 4:45 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
Followup-To: comp.unix.shell
From: Don <donald.we...@NOSPAM.hp.com>
Date: Wed, 18 May 2005 13:45:30 -0700
Local: Wed, May 18 2005 4:45 pm
Subject: Re: Comparing 2 similar strings?

http://www.personal.psu.edu/staff/i/u/iua1/python/apse/
http://www.nist.gov/dads/HTML/editDistance.html

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 18 2005, 4:55 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Thu, 19 May 2005 06:55:00 +1000
Subject: Re: Comparing 2 similar strings?
On Wed, 18 May 2005 15:48:32 -0400, William Park

1. Google for such topics as "fuzzy matching", "edit distance",
"approximate comparison".

2. Closer to home, look at the thread in comp.lang.python around
2004-11-18 -- search for "Pingel Hyyro" [and yes you do mean "hyyro",
not "hydro"!!]

3. Steadfastly ignore any (presumably) well-intentioned profferings of
soundex.

HTH,
John


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 18 2005, 5:07 pm
Newsgroups: comp.unix.shell, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Thu, 19 May 2005 07:07:56 +1000
Local: Wed, May 18 2005 5:07 pm
Subject: Re: Comparing 2 similar strings?
On Wed, 18 May 2005 13:45:30 -0700, Don <donald.we...@NOSPAM.hp.com>
wrote:

The above is broken, not meeting one of the elementary conditions for
a distance metric:

distance(a, b) == distance(b, a)

Quoting from its docs:
 |  Note: The definition of the goodness of an approximate match is
the
 |  number of steps required to bring the string pattern to a form
that is
 |  entirely contained in the string to which it is being matched.

Note: "entirely contained in", rather than "equal to". Now read on:

 | The mathing
 |  is not commutative. The pattern that you instantiate the class
with will be
 |  matched against the input. For example the word "funky" can be
made to
 |  match the word "funnybone" with an edit distance of one. However,
using
 |  "funnybone" as a pattern that will be  matched to "funky" the
distance
 |  will become five.
 |  
 |  Example:
 |  
 |  >>> from Apse import Approx
 |  >>> a = Approx("funky")
 |  >>> a.dist("funnybone")
 |  1
 |  >>> a = Approx("funnybone")
 |  >>> a.dist("funky")
 |  5


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aahz  
View profile  
 More options May 18 2005, 5:20 pm
Newsgroups: comp.lang.python
From: a...@pythoncraft.com (Aahz)
Date: 18 May 2005 14:20:24 -0700
Local: Wed, May 18 2005 5:20 pm
Subject: Re: Comparing 2 similar strings?
[trimmed to c.l.py]

In article <24a6d$428b9c10$d1b717f8$2...@PRIMUS.CA>,
William Park  <opengeome...@yahoo.ca> wrote:

difflib -- use the string as the sequence
--
Aahz (a...@pythoncraft.com)           <*>         http://www.pythoncraft.com/

"And if that makes me an elitist...I couldn't be happier."  --JMS


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Morton  
View profile  
 More options May 18 2005, 9:03 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: Ed Morton <mor...@lsupcaemnt.com>
Date: Wed, 18 May 2005 20:03:53 -0500
Local: Wed, May 18 2005 9:03 pm
Subject: Re: Comparing 2 similar strings?

Fantastic test data set. I know how to pronounce McPherson but I'd never
have guessed that Mousaferiadis sounds like it. I suppose non-Celts
probably wouldn't be able to guess how Dalziell, Drumnadrochit, Culzean,
Ceilidh, or Concobarh are pronounced either.

I assume you were actually being facetious and trying to make the point
that names that don't look the same on paper can have the same soundex
encoding and that's obviously countered with the fact that soundex is
just a cheap and cheerful way to find names that probably sound similair
which can vary tremendously based on ethnicity or accent.

It's a reasonable approach to consider given the very loose requirements
presented.

        Ed.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 18 2005, 10:07 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Thu, 19 May 2005 12:07:07 +1000
Local: Wed, May 18 2005 10:07 pm
Subject: Re: Comparing 2 similar strings?
On Wed, 18 May 2005 20:03:53 -0500, Ed Morton <mor...@lsupcaemnt.com>
wrote:

If you guessed "moose a ferry ah dis" i.e. phonetically you wouldn't
be far wrong. The point is that the two names neither look similar nor
sound similar. It is highly unlikely that one would be corrupted into
the other during either written or spoken communication. However they
get the same soundex code because the soundex method picks out MSFR
and MCPR and says in effect that S===C (sometimes) and F==P
(sometimes).

>I assume you were actually being facetious
> and trying to make the point
>that names that don't look the same on paper can have the same soundex
>encoding and that's obviously countered with the fact that soundex is
>just a cheap and cheerful way to find names that probably sound similair
>which can vary tremendously based on ethnicity or accent.

*If* you want phonetic similarity, there are methods that much better
than soundex, in the sense of fewer false positives and fewer false
negatives. Google for NYSIIS, dolby, metaphone, caverphone.

Cheap? You get what you pay for.

Cheerful? What's the relevance?

Someone who types "Mousaferiadis" into a customer search screen and
gets back several lines of McPherson and MacPherson is unlikely to be
cheerful -- even before we factor in the speed [soundex divides the
universe into a relative small number of buckets].

Someone who's looking for Erin when they should be looking for Aaron
(or vice versa) won't get much cheer out of soundex, either.

>It's a reasonable approach to consider given the very loose requirements
>presented.

Soundex is *NEVER* a reasonable approach to consider. Phonetic
variation is only one consideration. In any case, the OP didn't appear
to be concerned with phonetic variations.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Morton  
View profile  
 More options May 18 2005, 11:37 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: Ed Morton <mor...@lsupcaemnt.com>
Date: Wed, 18 May 2005 22:37:21 -0500
Local: Wed, May 18 2005 11:37 pm
Subject: Re: Comparing 2 similar strings?

John Machin wrote:
> On Wed, 18 May 2005 20:03:53 -0500, Ed Morton <mor...@lsupcaemnt.com>
> wrote:
<snip>
>>I assume you were actually being facetious
>>and trying to make the point
>>that names that don't look the same on paper can have the same soundex
>>encoding and that's obviously countered with the fact that soundex is
>>just a cheap and cheerful way to find names that probably sound similair
>>which can vary tremendously based on ethnicity or accent.

> *If* you want phonetic similarity, there are methods that much better
> than soundex, in the sense of fewer false positives and fewer false
> negatives. Google for NYSIIS, dolby, metaphone, caverphone.

And I assume I'd find they all have pros and cons too, otherwise you'd
be referring to THE best one rather than a selection. It seems a bit
pointless to go browsing through the documentation on them when someone
who presumably already has can't just state the best one for the job.

> Cheap? You get what you pay for.

> Cheerful? What's the relevance?

"Cheap and cheerful" is a colloquial expression meaning cost-effective.

> Someone who types "Mousaferiadis" into a customer search screen and
> gets back several lines of McPherson and MacPherson is unlikely to be
> cheerful -- even before we factor in the speed [soundex divides the
> universe into a relative small number of buckets].

> Someone who's looking for Erin when they should be looking for Aaron
> (or vice versa) won't get much cheer out of soundex, either.

That goes back to accent. In [some parts at least of] the USA Erin
sounds very much like Aaron wheras in the UK the 2 are very dissimilar.
I assume since you apparently consider them similair that you live in
the USA and so would consider soundex as providing a "false negative" by
saying they don't match. Perhaps one of the other approaches you suggest
would report that they do match but that wouldn't make it clearly a
better choice to everyone.

>>It's a reasonable approach to consider given the very loose requirements
>>presented.

> Soundex is *NEVER* a reasonable approach to consider. Phonetic
> variation is only one consideration. In any case, the OP didn't appear
> to be concerned with phonetic variations.

The OP didn't say what the application was at all, but you're right that
from his example he does SEEM more interested in character matches than
phonetic ones so he'd presumably quickly discard phonetic comparisons if
that's really not what he wants.

        Ed.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 19 2005, 12:09 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Thu, 19 May 2005 14:09:32 +1000
Local: Thurs, May 19 2005 12:09 am
Subject: Re: Comparing 2 similar strings?
On Wed, 18 May 2005 22:37:21 -0500, Ed Morton <mor...@lsupcaemnt.com>
wrote:

*ALL* approximate matching methods have pros and cons -- and all
others have fewer than soundex.

> It seems a bit
>pointless to go browsing through the documentation on them when someone
>who presumably already has can't just state the best one for the job.

They were listed in roughly increasing order of general rough
effectiveness. It depends on the job. It depends on the language. None
of them would work well with your O Muirchaitaeioughs :-)

>> Cheap? You get what you pay for.

>> Cheerful? What's the relevance?

>"Cheap and cheerful" is a colloquial expression meaning cost-effective.

Grossly misapplied to soundex.

>> Someone who types "Mousaferiadis" into a customer search screen and
>> gets back several lines of McPherson and MacPherson is unlikely to be
>> cheerful -- even before we factor in the speed [soundex divides the
>> universe into a relative small number of buckets].

>> Someone who's looking for Erin when they should be looking for Aaron
>> (or vice versa) won't get much cheer out of soundex, either.

>That goes back to accent. In [some parts at least of] the USA Erin
>sounds very much like Aaron wheras in the UK the 2 are very dissimilar.
>I assume since you apparently consider them similair that you live in
>the USA

You assume incorrectly. In any case my whereabouts are of sublime
irrelevance. What matters is that some people will as you say think
that Aaron and Erin sound similar in the best of circumstances; they
are prone to be mistaken one for the other by (say) a tired call
centre operative especially when the caller and the callee are from
different backgrounds.

> and so would consider soundex as providing a "false negative" by
>saying they don't match. Perhaps one of the other approaches you suggest
>would report that they do match but that wouldn't make it clearly a
>better choice to everyone.

None of the other approaches make the mistake of preserving the first
letter -- this alone is almost enough reason for jettisoning soundex.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott David Daniels  
View profile  
 More options May 19 2005, 12:18 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: Scott David Daniels <Scott.Dani...@Acm.Org>
Date: Wed, 18 May 2005 21:18:29 -0700
Local: Thurs, May 19 2005 12:18 am
Subject: Re: Comparing 2 similar strings?

William Park wrote:
> How do you compare 2 strings, and determine how much they are "close" to
> each other?  

Here's a really weird idea:  Measure the size difference between the
pair of strings compressed together and compressed separately.

--Scott David Daniels
Scott.Dani...@Acm.Org


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
chrisconnett@gmail.com  
View profile  
 More options May 19 2005, 3:22 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: "chrisconn...@gmail.com" <chrisconn...@gmail.com>
Date: 19 May 2005 00:22:33 -0700
Local: Thurs, May 19 2005 3:22 am
Subject: Re: Comparing 2 similar strings?
Could hit a few snags.  Quick out-of-the-library compression using
standards like zlib will have headers that will dilute the difference
on short strings, and on long strings block compression (zlib, bzip2)
will not pick up similarities because the similarities will be in
different blocks.  With blocks of around 100k-1M in these algos by
default (IIRC),  this could work well for strings between oh say
1k-50k.

But I need to underscore Aahz's posting above:

***Check out difflib, it's in the library.***  Perfect package for what
the OP wants AFAICT.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Croughton  
View profile  
 More options May 19 2005, 8:45 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
Followup-To: comp.lang.awk
From: Chris Croughton <ch...@keristor.net>
Date: Thu, 19 May 2005 13:45:34 +0100
Local: Thurs, May 19 2005 8:45 am
Subject: Re: Comparing 2 similar strings?
On Thu, 19 May 2005 06:38:59 +1000, John Machin
   <sjmac...@lexicon.net> wrote:

I remember a word processor, MultiMate, which used Soundex to do
matching for its suggestions for spelling correction.  One of my
cow-orkers typed the word 'agains' -- it was supposed to be 'against'
but 'again' would also have been a sensible suggestion.  MultiMate,
however, suggested neither of those reasonable words, it did suggest
"iguanas" amd "Utahns"...

(I wonder what it does with "Talliafero" and "Tolliver", and with
"Featherstone-Howe" and "Fanshaw"...)

The answer to the OP, which someone just pointed out to me on
comp.programming, is "edit distance" or "Levenshtein Distance"[1].  A
google search on either produces some good descriptions in the first few
links, including http://www.merriampark.com/ld.htm which has not only a
description of the algorithm but also source code in Java, C++ and
Visual Basic (no Awk, thought there are links to pages with
implementations in Perl, Python, Delphi and many more)...

[1] I would have spelt it 'Levenstein', and pronounced it 'Levenshtein'
in Schwaebisch (south German) fashion, but apparently the author of the
algorithm was one Vladimir I. Levenshtein and that is how he is credited
on the IEEE site.  There are also a number of Google hits under the
'stein' spelling, though...

Chris C


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options May 19 2005, 11:14 am
Newsgroups: comp.unix.shell, comp.lang.python
From: Steven D'Aprano <st...@REMOVETHIScyber.com.au>
Date: Fri, 20 May 2005 01:14:42 +1000
Local: Thurs, May 19 2005 11:14 am
Subject: Re: Comparing 2 similar strings?

On Thu, 19 May 2005 07:07:56 +1000, John Machin wrote:
> On Wed, 18 May 2005 13:45:30 -0700, Don <donald.we...@NOSPAM.hp.com>
> wrote:

>>http://www.personal.psu.edu/staff/i/u/iua1/python/apse/

> The above is broken, not meeting one of the elementary conditions for
> a distance metric:

> distance(a, b) == distance(b, a)

I agree that this makes the edit distance broken in the context of text
strings, but you should be aware that distance is only commutative if
there are no constraints on travel. If you've ever driven around cities
like Sydney that use lots of one-way streets, you will know that the
distance from point A to point B is not necessarily the same as the
distance from B back to A.

--
Steven


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steven D'Aprano  
View profile  
 More options May 19 2005, 11:47 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: Steven D'Aprano <st...@REMOVETHIScyber.com.au>
Date: Fri, 20 May 2005 01:47:15 +1000
Local: Thurs, May 19 2005 11:47 am
Subject: Re: Comparing 2 similar strings?

On Thu, 19 May 2005 14:09:32 +1000, John Machin wrote:
> None of the other approaches make the mistake of preserving the first
> letter -- this alone is almost enough reason for jettisoning soundex.

Off-topic now, but you've made me curious.

Why is this a bad idea?

How would you handle the case of "barow" and "marow"? (Barrow and
marrow, naturally.) Without the first letter, they sound identical. Why is
throwing that information away a good thing?

Thanks,

--
Steven


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dan Bishop  
View profile  
 More options May 19 2005, 6:03 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: "Dan Bishop" <danb...@yahoo.com>
Date: 19 May 2005 15:03:22 -0700
Local: Thurs, May 19 2005 6:03 pm
Subject: Re: Comparing 2 similar strings?

Steven D'Aprano wrote:
> On Thu, 19 May 2005 14:09:32 +1000, John Machin wrote:

> > None of the other approaches make the mistake of preserving the
first
> > letter -- this alone is almost enough reason for jettisoning
soundex.

> Off-topic now, but you've made me curious.

> Why is this a bad idea?

Because of situations like, for example, my mother's last name, which
originally started with "Y" but got anglicized to a name beginning with
"E".  Same name, different Soundex codes, and the problem occurs only
occurs because of Soundex's preservation of the exact initial letter.

> How would you handle the case of "barow" and "marow"? (Barrow and
> marrow, naturally.) Without the first letter, they sound identical.
Why is
> throwing that information away a good thing?

No one's suggesting throwing away the first letter's information, just
removing the special treatment for it.  "Barow" becomes 1600 and
"Marow" becomes 5600.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Croughton  
View profile  
 More options May 19 2005, 5:34 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
Followup-To: comp.lang.awk
From: Chris Croughton <ch...@keristor.net>
Date: Thu, 19 May 2005 22:34:14 +0100
Local: Thurs, May 19 2005 5:34 pm
Subject: Re: Comparing 2 similar strings?
On Fri, 20 May 2005 01:47:15 +1000, Steven D'Aprano
   <st...@REMOVETHIScyber.com.au> wrote:

> On Thu, 19 May 2005 14:09:32 +1000, John Machin wrote:

>> None of the other approaches make the mistake of preserving the first
>> letter -- this alone is almost enough reason for jettisoning soundex.

> Off-topic now, but you've made me curious.

> Why is this a bad idea?

Why is the first letter any more important than any other?

> How would you handle the case of "barow" and "marow"? (Barrow and
> marrow, naturally.) Without the first letter, they sound identical. Why is
> throwing that information away a good thing?

Well, Soundex will quite possibly throw the information away anyway,
certainly it regards several letters as the same.  But why is the
difference between barrow and marrow more important than that between
help and held?  Or between hatter and hammer?

Regarding 'agains' as similar to 'iguanas' and 'Utahns', but not to
'again' or 'against', is silly...

Chris C


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 19 2005, 6:39 pm
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Fri, 20 May 2005 08:39:44 +1000
Local: Thurs, May 19 2005 6:39 pm
Subject: Re: Comparing 2 similar strings?
On Fri, 20 May 2005 01:47:15 +1000, Steven D'Aprano

<st...@REMOVETHIScyber.com.au> wrote:
>On Thu, 19 May 2005 14:09:32 +1000, John Machin wrote:

>> None of the other approaches make the mistake of preserving the first
>> letter -- this alone is almost enough reason for jettisoning soundex.

>Off-topic now, but you've made me curious.

>Why is this a bad idea?

>How would you handle the case of "barow" and "marow"? (Barrow and
>marrow, naturally.) Without the first letter, they sound identical. Why is
>throwing that information away a good thing?

Sorry if that was unclear. By "preserving the first letter", I meant
that in "standard" soundex, the first letter is not transformed into a
digit.

Karen -> K650
Kieran -> K650
(R->6, N->5; vowels->0 and then are squeezed out)

Now compare this:
Aaron -> A650
Erin -> E650

Bearing in mind that the usual application of soundex is "all or
nothing", the result is Karen == Kieran, but Aaron !== Erin, which is
at the very least extremely inconsistent.

A better phonetic-key creator would produce the same result for each
of the first pair, and for each of the second pair -- e.g. KARAN and
ARAN respectively.

Also consider Catherine vs Katherine.

Cheers,
John


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Patrick TJ McPhee  
View profile  
 More options May 20 2005, 12:09 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: p...@interlog.com (Patrick TJ McPhee)
Date: 20 May 2005 04:09:26 GMT
Local: Fri, May 20 2005 12:09 am
Subject: Re: Comparing 2 similar strings?
In article <153o811mt7uhqa3aojb5101sd7qo4jr...@4ax.com>,
John Machin  <sjmac...@lexicon.net> wrote:

% None of the other approaches make the mistake of preserving the first
% letter -- this alone is almost enough reason for jettisoning soundex.

Metaphone does, at least in the case of Aaron and Erin.

--

Patrick TJ McPhee
North York  Canada
p...@interlog.com


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Machin  
View profile  
 More options May 20 2005, 7:24 am
Newsgroups: comp.unix.shell, comp.lang.awk, comp.lang.python
From: John Machin <sjmac...@lexicon.net>
Date: Fri, 20 May 2005 21:24:10 +1000
Local: Fri, May 20 2005 7:24 am
Subject: Re: Comparing 2 similar strings?
On 20 May 2005 04:09:26 GMT, p...@interlog.com (Patrick TJ McPhee)
wrote:

>In article <153o811mt7uhqa3aojb5101sd7qo4jr...@4ax.com>,
>John Machin  <sjmac...@lexicon.net> wrote:

>% None of the other approaches make the mistake of preserving the first
>% letter -- this alone is almost enough reason for jettisoning soundex.

>Metaphone does, at least in the case of Aaron and Erin.

You're quite correct; moreover NYSIIS does that too.

Dunno what came over me, must be gamma rays or something :-)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve Holden  
View profile  
 More options May 20 2005, 3:29 pm
Newsgroups: comp.lang.python
From: Steve Holden <st...@holdenweb.com>
Date: Fri, 20 May 2005 15:29:48 -0400
Local: Fri, May 20 2005 3:29 pm
Subject: Re: Comparing 2 similar strings?

Well, as an Englishman who has spent a good deal of time in Scotland I'd
essay the following. If there are any Scots reading they can chastise me
with glee for my presumption.

Dalziell:               "Da'y yell"
Drumnadrochit:          "Dru'mnadro'ckit"
                        (but the Scots would insist you use
                        a gutteral for the "ch", I'm not sure
                        how to render that phonetically. It's
                        a bit like the sound made before spitting,
                        or the "G" in Guido in Dutch :-).
Culzean:                "Ka La'ne"
Ceilidh:                "Ca'yli" (once had a border collie called
                        Ceilidh).
Concobarh:              (is this the same as 'Conchobar'?)
                        Co'nnahwar

promoting-scottish-english-unity-ly y'rs  - steve
--
Steve Holden        +1 703 861 4237  +1 800 494 3119
Holden Web LLC             http://www.holdenweb.com/
Python Web Programming  http://pydish.holdenweb.com/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve Holden  
View profile  
 More options May 20 2005, 3:31 pm
Newsgroups: comp.lang.python
From: Steve Holden <st...@holdenweb.com>
Date: Fri, 20 May 2005 15:31:26 -0400
Local: Fri, May 20 2005 3:31 pm
Subject: Re: Comparing 2 similar strings?

And what's the Levenshtein distance between "levenshtein" and
"levenstein"? Ironic if it were large ...

regards
  Steve
--
Steve Holden        +1 703 861 4237  +1 800 494 3119
Holden Web LLC             http://www.holdenweb.com/
Python Web Programming  http://pydish.holdenweb.com/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Skip Montanaro  
View profile  
 More options May 20 2005, 4:16 pm
Newsgroups: comp.lang.python
From: Skip Montanaro <s...@pobox.com>
Date: Fri, 20 May 2005 15:16:49 -0500
Local: Fri, May 20 2005 4:16 pm
Subject: Re: Comparing 2 similar strings?

    Steve> (is this the same as 'Conchobar'?)

No, that's a trendy pub in Key West...

<wink>

Skip


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 32   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google