String_new

Homepage
Wrappers

Creates a new String object.

StringObject := String_new(value = "")

Parameters

value The value to initialize the String object to.

Return Value

Address for the newly created String object.

Remarks

If the system has insufficient memory to create the object (very rare), zero will be returned.

Related

String_destroy

String

Examples

;Creates a new String initialized to "Hello World!"
myString := String_new("Hello World!")

Homepage  |  Wrappers