FromString()

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

FromString()

Create a new instance of MfCharList from a string.

OutputVar := instance.FromString(s [, includeWhiteSpace])

FromString(s [, includeWhiteSpace])

Create a new instance of MfCharList from a string by splitting the string into each char and adding char to inner list.

Parameters

s

String var or instance of MfString to generate the MfCharList instance from.

includeWhiteSpace

Boolean value. If true then whitespace chars will be included if they exist s; Otherwise all Unicode whitespace chars will be ignores.
Can be boolean var or instance of MfBool.

Returns

Returns new instance of MfCharList containing elements representing s.

Remarks

Static Method

Example

sb := new MfText.StringBuilder()
lst := MfCharList.FromString("The Quick Brown Fox Jumped Over The Lazy Dog.", false)
enum := lst.GetCharEnumerator()
While (enum.Next(index, Char))
{
   sb.Append(Char)
}
MsgBox % sb.ToString()

; TheQuickBrownFoxJumpedOverTheLazyDog.