Berserk Docs
Scalar FunctionsString Functions

endswith_cs

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

Syntax

text endswith_cs lookup

Negated form:

text !endswith_cs lookup

Function call syntax:

endswith_cs(text, lookup)

Parameters

Prop

Type

Returns: bool

Examples

Example 1

print "Sail the North Sea" endswith_cs "Sea"
print_0 (bool)
true

On this page