Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Function: endsWith()

Returns True if a String ends with a given pattern otherwise returns False.

Syntax

endsWith(stringToTest, stringToLookFor)

ArgumentTypeDescription
stringToTestStringThe string to be searched.
stringToLookForStringThe String to look for in stringToTest

Examples

endsWith("ABCDEF","DEF")

Returns True.

endsWith("ABCDEF","DE")

Returns False.

endsWith(in.prodCode,$prodSuffix)

Returns True if in.prodCode ends in the String contained within $prodSuffix.

See Also

  • No labels