LIKE( )
Tests if a string matches a pattern.
Syntax
LIKE(str, pattern)
Argument
str
The string to evaluate.
pattern
The string pattern to match. You must enclose the pattern in double quotation marks (" "). Use the correct case when typing the characters to match; the match is case-sensitive. You can use the following special characters in a pattern:
*
*
To match a literal percent (%), underscore (_), precede those characters with a two backslash (\\) characters. For example, to see if a string contains M_10, specify the following pattern:
"%M\\_10%"
Returns
True if the string matches the pattern; returns false otherwise.
Example
The following example returns true for values in the customerName field starting with D:
LIKE([customerName], "D%")
The following example returns true for productCode values containing the substring Ford:
LIKE([productCode], "%Ford%")
The following example uses two LIKE( ) expressions to look for the substrings “Ford” or “Chevy” in each ProductName value. If a product name contains either substring, the computed column displays U.S. Model; otherwise, it displays Imported Model.
IF(((LIKE([ProductName], "%Ford%") = TRUE) OR (LIKE([ProductName], "%Chevy%") = TRUE)), "U.S. model", "Imported Model")

Additional Links:

© Copyright OpenText Corp. All rights reserved. Privacy Policy | Cookie Policy

BIRT iHub 2