Right then I know how to use if and elseif, been using them for years now.
The question is can I do a general if statement(pseudo-code to follow)?Basically, I want to be able find out if the wildcard is numeral digits, and not letters.
The question is can I do a general if statement(pseudo-code to follow)?
stuff = "%1"
if stuff = (numbers but no characters... I.E. words or letters) then
(do stuff here)
elseif stuff = "ON" then
(do more stuff)
elseif stuff = "OFF" then
(more stuff)
else
(something else)
end if