[futurebasic] Re: [FB] [X-FB] Java function

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : December 1998 : Group Archive : Group : All Groups

From: tatewake@... (TJ Grant)
Date:
>                if (theSN == "test") {result = true;}
>                else {result = false;};
>                return result;

Easy! But easy because it's something you learn to hate :-)

if (theSN.equals("test") { result = true; }

Also:
theSN.toLowerCase().equals("test")
works nicely too.

Good luck!


-- TJ Grant (tatewake@...)
Inspired Communications. http://inspired.netstreet.net/
Phone: 407-728-7563