| Group: | String Manipulation |
| See also: | atof string substr |
| Function: | char | |
| Description: | Convert numbers to ASCII characters in strings. |
| Usage: | z=char(x) | |
| Input: | ||
| x | array of numbers | |
| Output: | ||
| z | array of strings | |
x = #(65, 34, -1, 65.2) char(x)
Contents of char [1,] "A" [2,] """ [3,] "ÿ" [4,] "A"
| Group: | String Manipulation |
| See also: | atof string substr |