make_string()
Returns the string generated by the Unicode characters.
Syntax
make_string (
Arg1[, ArgN]... )
Arguments
-
Arg1 ... ArgN: Expressions that are integers (int or long) or a dynamic value holding an array of integral numbers.
-
This function receives up to 64 arguments.
Returns
Returns the string made of the Unicode characters whose codepoint value is provided by the arguments to this function. The input must consist of valid Unicode codepoints. If any argument isn't mapped to a Unicode character, the function returns
null
.
Examples
print str = make_string(81, 82, 65, 68, 65,82)
Results
str |
---|
QRADAR |
print str = make_string(dynamic([81, 82, 65, 68, 65,82]))
Results
str |
---|
QRADAR |
print str = make_string(dynamic([81, 82, 65]),68, 65,82)
Results
str |
---|
QRADAR |
print str = make_string(81, 10, 82, 10, 65, 10, 68,10,65,10, 82)
Results
str |
---|
Q R A D A, R |
print str = make_string(range(48,57), range(65,90), range(97,122))
Results
str |
---|
0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz |