startsWithIgnoreCaseString

Tests whether the string begins with another string.

Syntax

startsWithIgnoreCaseString(content, wildcard)

Returns

(boolean) yes/no

Parameters

content (string)
source
wildcard (string)
the compare string

Usage

echo(startsWithIgnoreCaseString("abcdef", "AbC") ? "starts with AbC" : "doesnt start with AbC");