Reverse()

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

Reverse()

OutputVar := instance.Reverse()
OutputVar := MfString.Reverse(str)

Reverse()

Reverses the value of the MfString instance into a string.
See example 1 and example 2 below.

Returns

Returns a new string that has all its chars reversed.
If ReturnAsObject Property for this instance is true then returns new MfString; Otherwise returns var containing string.

MfString.Reverse(str)

Reverses the value of str into a string.
See example 3 and example 4 below.

Returns

Returns a string that has all its chars reversed.
If str is a MfString instance and ReturnAsObject Property is true for str then a MfString instance will be returned; Otherwise returns var containing string.

Parameters

str

MfString to reverse. Can be a instance of MfString or var containing string.


Throws

Throws MfArgumentNullException if MfString in not an instace and str is null or empty.

Example 1

; Create instance of MfString and set its ReturnAsObject property to true
mfs := new MfString("Hello World", true)

; result will be returned as MfString Instance because ReturnAsObject is true for mfs
result := mfs.Reverse() ; result.Value will contain: dlroW olleH

Example 2

; Create instance of MfString and set its ReturnAsObject property to false
mfs := new MfString("Hello World")

; result will be returned as var containing string because ReturnAsObject is false for mfs
result := mfs.Reverse() ; result will contain: dlroW olleH

Example 3

; Create instance of MfString and set its ReturnAsObject property to true
mfs := new MfString("Hello World", true)

; result will be returned as MfString Instance because ReturnAsObject is true for mfs
result := MfString.Reverse(mfs) ; result.Value will contain: dlroW olleH

Example 4

; Create instance of MfString and set its ReturnAsObject property to false
mfs := new MfString("Hello World")

; result will be returned as var containing string because ReturnAsObject is false for mfs
result := MfString.Reverse(mfs) ; result will contain: dlroW olleH