-
-
Notifications
You must be signed in to change notification settings - Fork 619
string.startswith
starkos edited this page Apr 10, 2021
·
3 revisions
This wiki is no longer being maintained.
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.