VicTT Posted September 12, 2005 Posted September 12, 2005 (edited) Can anyone provide a certain $x for which IsString($x)=0? I have this tiiiny hunch that very few $x's have this certain characteristic..unless (maybe) of course, things like @TRUE and @FALSE.. EDIT: Woops..0 instead of 1 Edited September 12, 2005 by VicTT Quote Together we might liveDivided we must fall
GaryFrost Posted September 12, 2005 Posted September 12, 2005 $var = 10 MsgBox(0,"test",IsString($var)) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
jpm Posted September 12, 2005 Posted September 12, 2005 Can anyone provide a certain $x for which IsString($x)=0?I have this tiiiny hunch that very few $x's have this certain characteristic..unless (maybe) of course, things like @TRUE and @FALSE..EDIT: Woops..0 instead of 1<{POST_SNAPBACK}>What do we win?$x=1 msgbox(0,"isstring",isstring($x))
/dev/null Posted September 12, 2005 Posted September 12, 2005 Can anyone provide a certain $x for which IsString($x)=0?I have this tiiiny hunch that very few $x's have this certain characteristic..unless (maybe) of course, things like @TRUE and @FALSE..EDIT: Woops..0 instead of 1<{POST_SNAPBACK}>an integer is NOT a string AND a strings is a string!$x = 1 msgbox(0,"",$x & " " & IsString($x)) $x = "1" msgbox(0,"",$x & " " & IsString($x))CheersKurt __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now