RE: [codec] Soudex issue with accented character.

2004-06-02 Thread Edelson, Justin
: Sunday, May 23, 2004 8:37 PM To: Jakarta Commons Developers List Subject: [codec] Soudex issue with accented character. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29080 Currently, ö or é in a String causes Soundex to throw an ArrayIndexOutOfBoundsException. We can either: (1) Throw

RE: [codec] Soudex issue with accented character.

2004-06-02 Thread C. Scott Ananian
On Wed, 2 Jun 2004, Edelson, Justin wrote: The only better solution I can think of is to map the characters into their non-accented equivalent. While I think it's important to state that the default Soundex implementation is for English words, it would be nice to accommodate words with

RE: [codec] Soudex issue with accented character.

2004-06-02 Thread Edelson, Justin
:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 11:02 AM To: Jakarta Commons Developers List Subject: RE: [codec] Soudex issue with accented character. On Wed, 2 Jun 2004, Edelson, Justin wrote: The only better solution I can think of is to map the characters into their non-accented

[codec] Soudex issue with accented character.

2004-05-23 Thread Gary Gregory
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29080 Currently, ö or é in a String causes Soundex to throw an ArrayIndexOutOfBoundsException. We can either: (1) Throw a better Exception, like IllegalArgumentException: Only 'plain' letter are allowed. Or: (2) Ignore unmapped characters.