Difference between revisions of "NXSL:chr"

From NetXMS Wiki
Jump to navigation Jump to search
m (Text replacement - "^" to "{{deprecated}}")
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
__NOTOC__
{{deprecated}}__NOTOC__
Return a character from it's UNICODE value.
Return a character from it's UNICODE code.




== Syntax ==
== Syntax ==


chr(''integer'');
chr(''code'');




Line 12: Line 12:
{| class="wikitable"
{| class="wikitable"
|-
|-
| ''integer'' || A character's UNICODE value.
| ''code'' || A character's UNICODE code.
|}
|}


Line 18: Line 18:
== Return Value ==
== Return Value ==


A character.
A string consisting of single character.




== Examples ==
== Examples ==


  chr(50) -> P
  chr(50) -> "P"

Latest revision as of 18:13, 13 September 2022

This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide)

Return a character from it's UNICODE code.


Syntax

chr(code);


Parameters

code A character's UNICODE code.


Return Value

A string consisting of single character.


Examples

chr(50)	->	"P"