CutIfLong()

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

CutIfLong()

OutputVar := instance.CutIfLong(maxLen)
OutputVar := instance.CutIfLong(maxLen, trailChars)

CutIfLong(maxLen)

Cuts a copy of this instance of MfString if it is longer than a given length and returns the result of the copy.

Parameters

maxLen

The maximum length that the value of MfString is allowed to be before it is cut. Can be MfInteger or var containing Integer.

CutIfLong(maxLen, trailChars)

Cuts a copy of this instance of MfString if it is longer than a given length, replaces cut with the value of trailChars and returns the result of the copy.

Parameters

maxLen

The maximum length that the value of MfString is allowed to be before it is cut. Can be MfInteger or var containing Integer.

TrailChars

The string to append to the value of MfString. To omit any TrailChars pass ""  or Null in as the value. Can be MfString or var containing string.

Returns

Return string copy representing the MfString Instance cut with trailChars appended to the end if needed.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

Throws

Throws MfNullReferenceException is not set to an instance.
Throws MfArgumentNullException if missing maxLen.
Throws MfInvalidCastException if maxLen cannot be cast to MfInteger.
Throws MfArgumentOutOfRangeException if maxLen is less than one.

Remarks

If the maxLen is less than the length of the trailChars then trailChars will not be included in the return value.

Example

myStr := new MfString("Hello World") ; Create new instanc of MfString class
MsgBox % myStr.CutIfLong(10)         ; Displays Hello W...
MsgBox % myStr.CutIfLong(10,"***")   ; Displays Hello W***
MsgBox % myStr.CutIfLong(10, "")     ; Displays Hello Worl

myStr.ReturnAsObject := true ; return object rather than vars from this instance
MsgBox % myStr.PadLeft(new MfParams(MfParams.I(14),MfParams.C("."))).CutIfLong(11).ToUpper().value ; displays ...HELLO...