Trim()

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

Trim()

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

Trim()

Removes all leading and trailing white-space characters from the current MfString object.

Trim(trimChars)

Removes all leading and trailing occurrences of a set of characters specified in trimChars from the current MfString object.

Parameters

trimChars

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

Returns

Returns a string with a value that remains after all occurrences of the characters in the trimChars parameter are removed from the end of the current string. If trimChars is null or empty, White-space characters are removed instead.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

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!!!")
result := mfsStr.Trim("!")
MsgBox %result% ; displays Hello World

;------------------------------------------------

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

Related

TrimStart(), TrimEnd(), SubString(), RemoveWhiteSpace()