I was using some expressions in livecode and thought I could use this expression to solve a simple problem to check if there is a number in a var.
put "2,3,4" into t
if 1 or 2 or 3 is in t then --works but convoluted
answer "yes"
end if
put item 1 into x --works but is there a faster way to write it--looking for a line wonder.

if item 1 is a number then
answer "yes"
end if
if t contains a number then --does not work..but should? I know I am missing something simple.
answer "yes"
end if