Regular Expressions

The parts search form allows the use of regular expressions in the text fields. A regular expression is a way of specifying more precisely what you are looking for. The expressions used by this search engine are not case sensitive, so a capital X is the same as a lower case x.

A regular expression is the text you want to find, possibly mixed with special characters/strings. Some of the more useful special characters are:

So, combining those special characters, you can search for ^caliper.*kit$, and that will find caliper seal kit, but not brake caliper seal kit nor caliper seal kits.

In addition, one may group expressions with parenthesis and use logical OR and AND operations, with the vertical bar (|) and ampersand (&) characters, respectively.