Berserk Docs
Scalar FunctionsString Functions

startswith_cs

Indicate whether a string starts with another string (case-sensitive).

Syntax

text startswith_cs lookup

Negated form:

text !startswith_cs lookup

Function call syntax:

startswith_cs(text, lookup)

Parameters

Prop

Type

Returns: bool

Examples

Example 1

print "Ivar the Boneless led the Great Army" startswith_cs "Ivar"
print_0 (bool)
true

On this page