# Metadata
Platforms: desktop, server, mobile OS: mac, windows, linux, ios, android Introduced: 1.0 Security:
# Syntax
value is a[n] {array | boolean | color | date | integer | number | point | rect | ASCII string }
# Params
- value : Any source of <value>.
# Examples
"1/16/98" is a date -- evaluates to true
1 is a boolean -- evaluates to false
45.4 is an integer -- evaluates to false
"red" is a color -- evaluates to true
local tArray put "test" into tArray[1] put tArray is an array -- evaluates to true
numToChar(128) is an ASCII string -- evaluates to false
# Description
This operator is useful for checking whether the user has entered data correctly, and for checking parameters before sending them to a handler to avoid a script error caused by feeding data of one type to an operator or function that requires a different type.
A value is a(n):
* array if its keys function is not empty. * boolean or logical if it is one of the two constants true or false * color if it is a valid color reference * date if it is in one of the formats produced by the date or time functions * number if it is a result of a numeric operation, or a string representing a decimal number (e.g. 100.01 or -10), a hexadecimal number (e.g. 0x1FB) or a number in scientific notation (e.g. 100.001e-10). * integer if it is a number and the number has no (non-zero) fractional part (e.g. 100.000 is an integer, but 100.001 is not an integer). * point if it consists of two numbers separated by a comma * rectangle if it consists of four numbers separated by commas * ASCII string if it does not contain any characters greater than charToNum(127)
All the types other than boolean can also include leading or trailing white space characters.
>*Note:* To ensure compatibility with SuperCard stacks, the is a color > operator returns true for any integer, although integers are not valid colors in LiveCode. If you need to strictly verify a color then you can write a wrapper function to do so that checks that the color is not an integer.
>*Note:* The range of dates that LiveCode can handle is limited by the > operating system's date routines. In particular, Windows systems are limited to dates after 1/1/1970. This means that the is a date operator will return false for dates before 1/1/1970 on Windows.
The is a operator is the logical inverse of the is not a operator. When one is true, the other is false.
# Tags
math,
# See