Re: Help me please
- Posted by Irv Mullins <irv at ELLIJAY.COM> Nov 04, 1998
- 635 views
On Wed, 4 Nov 1998 19:37:18 EST, Albert Brauneis <Dajawu36 at AOL.COM> wrote: >I want to do something like this but I am having troubles: > >sequence test >test = gets(0) >if (test = "albert") then -- This is my prob. >puts(1,"albert") >end if > Try if compare(test,"albert") = 0 then -- think "zero difference" then -- Also, see wildcard.e, so you can convert both to upper case when doing the compare - just in case of proper typing :) if compare(upper(test),"ALBERT") = 0 then Regards, Irv