-
-
Notifications
You must be signed in to change notification settings - Fork 617
string.startswith
Jason Perkins edited this page May 18, 2015
·
3 revisions
The string.startswith function returns true if the given string starts with the provided sequence.
string.startswith("haystack", "needle")
haystack is the string to check. needle is the starting sequence to check against.
True if haystack starts with needle.
Premake 4.0 or later.