AddString()

Namespace ›› System ›› MfCharList ›› Methods ››
Parent Previous Next

AddString()

Adds string or char codes elements to the end of the current instance.

OutputVar := instance.AddString(str [, startIndex, length])

Add(str [, startIndex, length])

Adds string or char codes elements to the end of the current instance.

Parameters

str

The string to convert to integer char codes and add to the end of the current instance.
Can be var or instance of MfString or any object derived from MfPrmitive.

startIndex

Optional, the zero-based startIndex to start reading the string chars.
If omitted the the then the string is read from the start to length

length

Optional, the total length of the string to read from startIndex.
If omitted then string is read from startIndex to end of the string.

Returns

Var containing Integer of the zero-based index at which the obj has been added.

Throws

Throws MfException if any error occurs adding str to current instance.

Example

s := "the quick brown fox jumped over the lazy dog."
lst := new MfCharList()
lst.AddString(s)
MsgBox % lst.ToString()
; the quick brown fox jumped over the lazy dog.