FromString()

Namespace ›› System ›› MfListVar ›› Methods ››
Parent Previous Next

FromString()

Create a new instance of MfListVar from a string.

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

FromString(s[, includeWhiteSpace, ignoreCase])

Create a new instance of MfListVar 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 MfListVar instance from.

includeWhiteSpace

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

ignoreCase

Boolean value. Sets the CaseSensitive property of the new instance.
Can be boolean var or instance of MfBool.

Returns

Returns new instance of MfListVar containing elements representing s.

Remarks

Static Method