Difference between revisions of "NXSL:typeof"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ Returns the data type for given value. == Syntax == typeof(''value''); == Parameters == :{| |- | ''value'' || Object to get data type for. |} == Return Value...")
 
Line 22: Line 22:
* null
* null
* object
* object
* array
* iterator
* string
* string
* real
* real
Line 28: Line 30:
* uint32
* uint32
* uint64
* uint64


== Examples ==
== Examples ==

Revision as of 12:20, 22 October 2014

Returns the data type for given value.


Syntax

typeof(value);


Parameters

value Object to get data type for.


Return Value

data type for given value. Type is returned as lowercase string. The following type names can be returned:

  • null
  • object
  • array
  • iterator
  • string
  • real
  • int32
  • int64
  • uint32
  • uint64

Examples

typeof("abc")		->	"string"
typeof(17)		->	"int32"
typeof(17000000000)	->	"int64"
typeof($node)		->	"object"