DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2006-04-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2006-04-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2004-05-10 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-17 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Inger, Matthew
] Sent: Friday, November 14, 2003 4:41 PM To: Jakarta Commons Developers List Subject: Re: [Bug 22692] - StringUtils.split ignores empty items Could the check as to whether a char is a delimiter be made into a method? The base class could just handle single characters, but people/us could then write

RE: [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Inger, Matthew
Subject: Re: [Bug 22692] - StringUtils.split ignores empty items Could the check as to whether a char is a delimiter be made into a method? The base class could just handle single characters, but people/us could then write subclasses for multiple delimiters or a check such as Character.isWhitespace

RE: [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Todd V. Jonker
Or just use lang.CharSet On Fri, 14 Nov 2003 16:58:45 -0500, Inger, Matthew [EMAIL PROTECTED] said: What about an interface: public class DelimitedTokenizer { public static interface DelimiterSet { public boolean isDelimiter(char c); } } and having the ability to pass

Re: [lang] [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Stephen Colebourne
Message- From: Stephen Colebourne [mailto:[EMAIL PROTECTED] Sent: Friday, November 14, 2003 4:41 PM To: Jakarta Commons Developers List Subject: Re: [Bug 22692] - StringUtils.split ignores empty items Could the check as to whether a char is a delimiter be made into a method? The base class

Re: [lang] [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Stephen Colebourne
An interesting idea, although the performance would be very poor without some effort in the CharSet class. Stephen From: Todd V. Jonker [EMAIL PROTECTED] Or just use lang.CharSet On Fri, 14 Nov 2003 16:58:45 -0500, Inger, Matthew [EMAIL PROTECTED] said: What about an interface: public

RE: [lang] [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Inger, Matthew
, 2003 5:26 PM To: Jakarta Commons Developers List Subject: Re: [lang] [Bug 22692] - StringUtils.split ignores empty items An interesting idea, although the performance would be very poor without some effort in the CharSet class. Stephen From: Todd V. Jonker [EMAIL PROTECTED] Or just use

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [lang] [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Stephen Colebourne
PM To: Jakarta Commons Developers List Subject: Re: [lang] [Bug 22692] - StringUtils.split ignores empty items (BTW: I've been meaning to and forgetting to change the subject line to include [lang]. Please use this for emails directed to lang) This interface approach should work OK. Perhaps

RE: [lang] [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Inger, Matthew
: Friday, November 14, 2003 5:26 PM To: Jakarta Commons Developers List Subject: Re: [lang] [Bug 22692] - StringUtils.split ignores empty items An interesting idea, although the performance would be very poor without some effort in the CharSet class. Stephen From: Todd V. Jonker [EMAIL PROTECTED

Re: [lang] [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread Stephen Colebourne
to construct their own all the time. -Original Message- From: Stephen Colebourne [mailto:[EMAIL PROTECTED] Sent: Friday, November 14, 2003 5:26 PM To: Jakarta Commons Developers List Subject: Re: [lang] [Bug 22692] - StringUtils.split ignores empty items An interesting idea, although

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

[Bug 22692] - StringUtils.split ignores empty items

2003-11-13 Thread Inger, Matthew
PROTECTED] Sent: Wednesday, November 12, 2003 10:00 AM To: [EMAIL PROTECTED] Subject: DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-11-12 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 22692] - StringUtils.split ignores empty items

2003-08-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22692. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.