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