Go to: Synopsis. Return value. Related. MEL examples.
int startsWith(string $s, string $prefix)
None
startsWith("abc", "ab");
// Result: 1 //
startsWith("abc", "bc");
// Result: 0 //
startsWith("abc", "");
// Result: 1 //