Gets a string with all Unicode whitespace chars removed
OutputVar := MfString.RemoveWhiteSpace(str [, ReturnAsObject])
Gets a string with all Unicode whitespace chars removed
str
The string to remove all Unicode whitespace chars from.
Can be Var or instance of MfString.
ReturnAsObject
Optional Boolean Value. Default is false.
If true the return value will be an instance of MfString with ReturnAsObject set to true; Otherwise a string var is returned.
If ReturnAsObject is true return MfString instance; Otherwise returns string var.
Throws MfInvalidOperationException if not called as a static method.
Version 0.4
Static Method
Trim(), TrimStart(), TrimEnd()
str := MfString.RemoveWhiteSpace(" The Quick Brown Fox Jumped Over The Lazy Dog.`nCats Are Fantastic! ")
MsgBox %str% ; "TheQuickBrownFoxJumpedOverTheLazyDog.CatsAreFantastic!"