> Where did I go wrong? should the private variable str be a
> character, or should cast?
[quoted text clipped - 24 lines]
> while (iToken < str.length()) {
> if (!(str.charAt(iToken) == " " )) {
^^^
try replacing with ' ' which is a space (0x20) as a char - " " is a
String containing a single space and String.charAt() returns a char.
> return true; }
> else {
> return false;}
> }
> }
> }

Signature
Rob Skedgell <rob+news@nephelococcygia.demon.co.uk>
From: address is a spamtrap, Reply-To: is valid.
GnuPG/PGP: 7DA3 1579 C0DD 8748 C05A B984 E2A2 3234 D14B 6DD7