OutputVar := instance.Reverse()
OutputVar := MfString.Reverse(str)
Reverses the value of the MfString instance into a string.
See example 1 and example 2 below.
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.
Reverses the value of str into a string.
See example 3 and example 4 below.
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.
str
MfString to reverse. Can be a instance of MfString or var containing string.
Throws MfArgumentNullException if MfString in not an instace and str is null or empty.
; 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
; 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
; 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
; 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