ASCII to string?

Monkey Forums/Monkey Programming/ASCII to string?

Jesse(Posted 2011) [#1]
I know there is a way to get the ascii value of a character in a string but is there a way to convert the ascii value in to a string character? I want
str:string = Chr(39)



Indiepath(Posted 2011) [#2]
MonkeyPro/docs/modules/index.html#/monkey.lang/String.FromChar

Syntax

Function FromChar$( charCode )
Parameters

charCode - character to create string with.
Description

Creates and returns a string of length 1 containing the character code specified by charCode.


Jesse(Posted 2011) [#3]
Thanks Indie. I glanced the whole string documentation but apparently missed it.