Is (function): Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "ISARRAY(''expression'') ISDATE(''expression'') ISEMPTY(''expression'') ISNULL(''expression'') ISNUMERIC(''expression'') ISOBJECT(''expression'') '''Description''' The I...")
 
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
ISARRAY(''expression'')
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''  


ISDATE(''expression'')
IsArray(''expression'')


ISEMPTY(''expression'')
IsDate(''expression'')


ISNULL(''expression'')
IsEmpty(''expression'')


ISNUMERIC(''expression'')
IsNull(''expression'')


ISOBJECT(''expression'')
IsNumeric(''expression'')


'''Description'''
IsObject(''expression'')
 
== Description ==


The Is functions return TRUE if a variable type corresponds to the function call, FALSE is returned otherwise. The required parameter, expression, is the variable whose type status is being determined.
The Is functions return TRUE if a variable type corresponds to the function call, FALSE is returned otherwise. The required parameter, expression, is the variable whose type status is being determined.


'''Example'''
IsDate() checks to see if the string is in a valid date format - it does not check to see if the date actually exists. IsDate("02/30/15") will return True. Additional checking will need to be done in your code to handle different date formats.
 
== Example (Basic) ==


<pre>
<pre>
REM Is Functions Example
Rem Is Functions Example
DIM Children(3), Chef, When
Dim Children(3), Chef, When
TestVariable Children
TestVariable Children
Chef = 1
Chef = 1
TestVariable Chef
TestVariable Chef
When = NOW
When = Now
TestVariable When
TestVariable When
SUB TestVariable(x)
Sub TestVariable(x)
   IF ISARRAY(x) THEN
   If IsArray(x) Then
     PRINT "The variable is an array."
     Print "The variable is an array."
   ELSEIF ISDATE(x) THEN
   ElseIf IsDate(x) Then
     PRINT "The variable is a date."
     Print "The variable is a date."
   ELSEIF ISNUMERIC(x) THEN
   ElseIf IsNumeric(x) Then
     PRINT "The variable is a number."
     Print "The variable is a number."
   END IF
   End If
END SUB
End Sub
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 44: Line 48:
</pre>
</pre>


'''Related Items'''
== Related Items ==
 
[[typename|TypeName]], [[vartype|VarType]]
 
[[Category:Language Reference]]
 
[[Category:Variable Handling]]


[[typename|TYPENAME]], [[vartype|VARTYPE]]
[[Category:BASIC Functions]]

Latest revision as of 15:27, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

IsArray(expression)

IsDate(expression)

IsEmpty(expression)

IsNull(expression)

IsNumeric(expression)

IsObject(expression)

Description

The Is functions return TRUE if a variable type corresponds to the function call, FALSE is returned otherwise. The required parameter, expression, is the variable whose type status is being determined.

IsDate() checks to see if the string is in a valid date format - it does not check to see if the date actually exists. IsDate("02/30/15") will return True. Additional checking will need to be done in your code to handle different date formats.

Example (Basic)

Rem Is Functions Example
Dim Children(3), Chef, When
TestVariable Children
Chef = 1
TestVariable Chef
When = Now
TestVariable When
Sub TestVariable(x)
  If IsArray(x) Then
    Print "The variable is an array."
  ElseIf IsDate(x) Then
    Print "The variable is a date."
  ElseIf IsNumeric(x) Then
    Print "The variable is a number."
  End If
End Sub

Output

The variable is an array.
The variable is a number.
The variable is a date.

Related Items

TypeName, VarType