Previous Topic: Escaping Special Characters in Object Identifiers

Next Topic: etautil Batch Utility

Escaping Special Characters in Search Filters

If you need to search for a pattern that includes a special character *, ), (, \ or NULL, it must be escaped using the format '\code' (the code is actually the 2 hexadecimal characters representing the ASCII character) as follows:

Escaped Search Examples

(name=*\2a*) # searches for * anywhere in the name

(file=d:\5cmyfile.html) # searches for d:\myfile

(description=*\28*\29) # searches for both ( and ) anywhere and in that order

(bin=\5b\04) # searches for binary values (or unicode characters) 5b04