_ (Wildcard)

_ (Wildcard)

Welcome to our Knowledge Base

Documentation | Blog | Demos | Support

< All Topics
Print

_ (Wildcard)

Used with the LIKE operator to construct patterns for matching.

Comments

Used with the LIKE operator in logic expressions, the _ wildcard matches any single character when the pattern on the right is compared to expression.

Example

“_ob%”

Matches any character string whose second and third letters are ob, followed by zero or more characters (i.e., “Robert”, “Bob”, “Cobbler”, etc.).

compute Employees where LastName like “_a%n”

Processes all records whose LastName values are three characters or more, the second character being an a and the last character being an n.

Grade like “100\%”

Shows the per cent sign being used literally in a string. (The first backslash “escapes” the second backslash, which, in turn, “escapes” the per cent sign, turning it into a literal character.)

find Parts where PartDesc like “%\\%”

Finds parts whose part description contains a backslash.

FirstName like $concat(“S_e%p”,SuffixVariable)

Assuming that SuffixVariable is “%”, then the above expression is logically true if FirstName matches the pattern S_e%p%.

Related Topics

Was this article helpful?
0 out of 5 stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
5
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.

Leave a Reply

Your email address will not be published. Required fields are marked *

en_CAEnglish