String_new |
Homepage Wrappers |
Creates a new String object.
StringObject := String_new(value = "")
| value | The value to initialize the String object to. |
If the system has insufficient memory to create the object (very rare), zero will be returned.
;Creates a new String initialized to "Hello World!"
myString := String_new("Hello World!")