|
Sep 29, 2009 7:00 PM GMT+00:00 Sep 30, 2009 7:30 PM GMT+00:00StringTokenizer works on characters - not strings.
I am using "GMT+00:00" (no quotes) as the delimiter.
The String#split method correctly splits the string in to the array
elements using a simple regex:
String[] tokens = text.split("GMT\\+00:00");
The StringTokenizer splits on the first double zero in 2009 and then stops
at the colon in the time next:
StringTokenizer t = new StringTokenizer(text, "GMT+00:00");
The 1st two tokens are:
Sep 29, 2
9 7
Has anyone seen this behavior before? Am I missing something obvious?
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.