Create a new instance of MfCharList from a string.
OutputVar := instance.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.
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 new instance of MfCharList containing elements representing s.
Static Method
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.