TrimStart()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

TrimStart()

OutputVar := instance.TrimStart()
OutputVar := instance.TrimStart(trimChars)

TrimStart()

Removes all leading occurrences of white-space from the current MfString.

TrimStart(trimChars)

Removes all leading occurrences of a set of characters specified in trimchars from the current MfString.

Parameters

trimChars

String value containing chars to remove as MfString instance or var containing string; or MfGenericList of MfChar; or null.

Returns

Returns The string that remains after all occurrences of the characters in the trimChars parameter are removed from the start of the current MfString. If trimChars is null or an empty, White-space characters are removed instead.
If ReturnAsObject Property for this instance is true then returns MfString;Otherwise returns var containing string.

Remarks

This Operation will fail if Readonly is true.

Throws

Throws MfNotSupportedException if Readonly is true.
Throws MfArgumentException if trimChars is incorrect type.

Example

mfsStr := new MfString("$%%%$Hello World!!!", true)
result := mfsStr.TrimEnd("!").TrimStart("$%").Value
MsgBox %result% ; displays Hello World

Related

TrimEnd(), Trim(), SubString()), RemoveWhiteSpace()