OutputVar := instance.Trim()
OutputVar := instance.Trim(trimChars)
Removes all leading and trailing white-space characters from the current MfString object.
Removes all leading and trailing occurrences of a set of characters specified in trimChars from the current MfString object.
trimChars
String value containing chars to remove as MfString instance or var containing string; or MfGenericList of MfChar; or null.
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 MfNotSupportedException if Readonly is true.
Throws MfArgumentException if trimChars is incorrect type.
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