The two ends-with operators (ENDS_WITH and ~ENDS_WITH) are designed to be used with string values. If the first string ends with the second string, the result of the operation is TRUE. Otherwise, the result of the operation is FALSE.
The "ENDS_WITH" operator is case-sensitive. The "~ENDS_WITH" operator is not case-sensitive.
Examples:
'SiteMinder' ENDS_WITH 'DER'
Result = FALSE
'SiteMinder' ~ENDS_WITH 'DER'
Result = TRUE
Copyright © 2010 CA. All rights reserved. | Email CA about this topic |