Regular expressions (REs), unlike simple text queries, allow you to search for text which matches a particular pattern.
awk
, grep
, lex
, perl
, and sed
).
compan(y|ies) |
Search for company or companies |
(peter|paul) |
Search for peter or paul |
bug* |
Search for bug, bugg, buggg or simply bu (a star matches zero or more instances of the previous character) |
bug.* |
Search for bug, bugs, bugfix (a dot-star matches zero or more instances of any character) |
[Bb]ag |
Search for Bag, bag |
b[aiueo]g |
Second letter is a vowel. Matches bag, bug, big |
b.g |
Second letter is any letter. Matches also b&g |
[a-zA-Z] |
Matches any one letter (but not a number or a symbol) |
[^0-9a-zA-Z] |
Matches any symbol (but not a number or a letter) |
[A-Z][A-Z]* |
Matches one or more uppercase letters |
[0-9]{3}-[0-9]{2}-[0-9]{4} |
US social security number, e.g. 123-45-6789 |
%SEARCH{type="regex"}%
also supports the ;
and !
operators in regular expression searches. ;
is used to indicate an "and" search. For example, Peace;War
to search for topics matching the regular expressions Peace
and War
.
!
is used to negate the sense of the following regular expression. For example, Peace;!War
will find topics that match the expression Peace
, but do not match the expression War
.
";"
and "!"
operators are %SEARCH
-specific and are not part of the standard regular expression syntax.
You can use more advanced features of Perl regular expressions, but your searches are not guaranteed to be supported on all Foswiki configurations, for example where a database store is in use and the database doesn't support the full Perl syntax for REs.
Related Links: