string.startswith - premake/premake-4.x GitHub Wiki
Home > [Scripting Reference](Scripting Reference) > string.startswith
string.startswith
The string.startswith function returns true if the given string starts with the provided sequence.
#!lua
string.startswith("haystack", "needle")
Parameters
haystack is the string to check. needle is the starting sequence to check against.
Return Value
True if haystack starts with needle.