OutputVar := instance.Substring(startIndex)
OutputVar := instance.Substring(startIndex, length)
OutputVar := MfString.Substring(str, startIndex)
OutputVar := MfString.Substring(str, startIndex, length)
Retrieves a substring from this instance. The substring starts at a specified character position.
Retrieves a substring from this instance. The substring starts at a specified character position and has a specified length.
Retrieves a substring from the str. The substring starts at a specified character position.
Static Method.
Retrieves a substring from the str. The substring starts at a specified character position and has a specified length.
Static Method.
str
The MfString or var containing string to get the substring of. Can be MfString instance or var containing string.
startIndex
The zero-based MfInteger starting character position of a substring in this instance. Can be MfInteger instance or var containing integer.
length
Integer value containing the number of characters in the substring. Can be MfInteger instance or var containing integer.
A new MfString that is equivalent to the substring of length length that begins at startIndex in this instance if str is omitted or MfString.Empty if startIndex is equal to the length of this instance and length is zero.
If ReturnAsObject Property for this instance is true then returns MfString; Otherwise returns var containing string.
Variadic Method; This method is Variadic so you may construct an instance of MfParams containing any of the overload method parameters listed above and pass in the MfParams instance to the method instead of using the overloads described above. See MfParams for more information.
See Also:MfParams
See Also:MfString
Throws MfArgumentException if the incorrect number or type of parameters are passed in.
Throws MfArgumentOutOfRangeException if startIndex or length is out of range.
Throws MfNotSupportedException if Overloads can not match Parameters.
;---------------------------------------------------
MyStr := new MfString("Hello World")
p := new MfParams() ; create a new instance of the MfParams class
p.AddInteger(6) ; add startIndex to MfParams
result := MyStr.SubString(p) ; Get the results; result = World
;---------------------------------------------------
MyStr := new MfString("Hello World")
iStart := new MfInteger(6) ; create a new instance of MfInteger
result := MyStr.SubString(iStart) ; Get the results; result = World
;---------------------------------------------------
s := "Hello World"
result := MfString.SubString(s, 6, 1) ; Get the results; result = W
;---------------------------------------------------
MyStr := new MfString("Hello World")
result := MyStr.SubString(6, 1) ; Get the results; result = W
;---------------------------------------------------
MyStr := new MfString("Hello World")
iStart := new MfInteger(6) ; create a new instance of MfInteger
iLength := new MfInteger(1) ; create a new instance of MfInteger
result := MyStr.SubString(iStart, iLength) ; Get the results; result = W
;---------------------------------------------------
result := MfString.SubString(new MfString("Hello World"), new MfInteger(6)) ; Get the results; result = World
;---------------------------------------------------
result := MfString.SubString("Hello World", 6) ; Get the results; result = World
;---------------------------------------------------
mystr := MfString.Format("OsType:{0} Version:{1}", A_OSType, A_OSVersion)
i := new MfInteger(5) str := new MfString("Cool computer")
mystr := MfString.Format("My computer is named:{0} and I have had it for {1} years", str, i)
; set MfString instance to return it method outputs as objects. This allows for method chaining
strObjA := new MfString(mystr, true)
resultA := MfString.Format(strObjA, str, i).Substring(58).PadLeft(20, ".").Value
MsgBox %resultA% ; displays ...............years