Hey!
Is it possible to check if a variable contains digits? If so; how can I do that? <img src="smileys/smiley1.gif" border="0" align="middle" /> I'd like to create a event like this;
IF value contains digits
Set text"You won cake!"
Thanks,
~ Thijs
int(value) if its not just a number it should return 0 or some form of invalid I believe. Dont hold me to that tho lol
Develop games in your browser. Powerful, performant & highly capable.
int(x) - convert x to integer
It doesn't check if it is or not and return a 1 or 2..
How about checking if int(x) = x, if it is, then it is an integer already.
int(x) - convert x to integer It doesn't check if it is or not and return a 1 or 2.. How about checking if int(x) = x, if it is, then it is an integer already.
That did the trick! Thanks for the replies! <img src="smileys/smiley36.gif" border="0" align="middle" />