CenterView Help
endsWith
Function: endsWith()
Returns True if a String ends with a given pattern otherwise returns False.
Syntax
endsWith(stringToTest, stringToLookFor)
Argument | Type | Description |
---|---|---|
stringToTest | String | The string to be searched. |
stringToLookFor | String | The 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
Please let us know if we could improve this page feedback@phixflow.com