StartsWith()

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

StartsWith()

Determines whether the start of this string instance matches the specified string.

OutputVar := instance.StartsWith(str)
OutputVar := instance.(str, comparisonType)

StartsWith(str)

Determines whether the start of MfString instance matches str. Case is Ignored

StartsWith(str, comparisonType)

Determines whether the start of MfString instance matches str and uses case rules set by comparisonType

Parameters

str

MfString instance or a var containing string

comparisonType

One of the MfStringComparison enumeration values that specifies the rules to use in the comparison

Returns

True if value matches the end of this instance; Otherwise, false.

Throws

Throws MfNullReferenceException if method is run on a non-instance of MfString
Throws MfNotSupportedException if Overloads can not match Parameters.
Throws MfArgumentException if there is an error get a value from a parameter.

Remarks

Overloads method supports using all vars or all objects. Mixing of vars and Objects is supported for this method.

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.

Example

mfs := new MfString("Hello World")
if (mfs.StartsWith("hello", MfStringComparison.Instance.OrdinalIgnoreCase))
{
   MsgBox, 64, Result, Result was found to start with 'hello'.
}

; Could Also be written as

mfs := new MfString("Hello World")
if (mfs.StartsWith("hello", 5))
{
   MsgBox, 64, Result, Result was found to start with 'hello'.
}

The result of running the example are shown in figure 1.

Figure 1:

Remarks

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.

Related

EndsWith()
Equals()
Difference()