RemoveWhiteSpace()

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

RemoveWhiteSpace()

Gets a string with all Unicode whitespace chars removed

OutputVar := MfString.RemoveWhiteSpace(str [, ReturnAsObject])

RemoveWhiteSpace(str [, ReturnAsObject])

Gets a string with all Unicode whitespace chars removed

Parameters

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.

Returns

If ReturnAsObject is true return MfString instance; Otherwise returns string var.

Throws

Throws MfInvalidOperationException if not called as a static method.

Since

Version 0.4

Remarks

Static Method

Related

Trim(), TrimStart(), TrimEnd()

Example

str :=  MfString.RemoveWhiteSpace(" The Quick Brown Fox Jumped Over The Lazy Dog.`nCats Are Fantastic! ")
MsgBox %str% ; "TheQuickBrownFoxJumpedOverTheLazyDog.CatsAreFantastic!"