OutputVar := instance.TrimEnd()
OutputVar := instance.TrimEnd(trimChars)
Removes all trailing occurrences of white-space from the current MfString.
Removes all trailing occurrences of a set of characters specified in trimchars from the current MfString.
trimChars
String value containing chars to remove as MfString instance or var containing string; or MfGenericList of MfChar; or null.
Returns a string that remains after all occurrences of the characters in the trimChars parameter are removed from the end 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.
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!!!", true)
result := mfsStr.TrimEnd("!").TrimStart("$%").Value
MsgBox %result% ; displays Hello World