-
-
Notifications
You must be signed in to change notification settings - Fork 640
string.startswith
Jason Perkins edited this page May 30, 2015
·
3 revisions
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.