Scalar FunctionsString Functions
endswith_cs
Indicate whether a string ends with another string (case-sensitive).
Syntax
text endswith_cs lookupNegated form:
text !endswith_cs lookupFunction 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 |