Garry's Mod Wiki

string.StartWith

  boolean string.StartWith( string inputStr, string start )

Description

We advise against using this. It may be changed or removed in a future update. Use string.StartsWith.

Returns whether or not the first string starts with the second. This is a alias of string.StartsWith.

Arguments

1 string inputStr
String to check.
2 string start
String to check with.

Returns

1 boolean
Whether the first string starts with the second.

Example

Demonstrates the use of string.StartWith

print(string.StartWith("hello there", "hell"))
Output: true