Home: Reengineering Next: Search Form

Regular Expressions

The regular expression you can fill in the search form are simplified versions of those for Gnu Emacs, i.e.:
any single character except newline. (dot)
zero or more repeats*
one or more repeats+
any character in the set[...]
any character not in the set[^...]
quote a special character c\c
alternative ("or")|
grouping(...)

Examples of Regular Expressions

if you do not remember whether the author's name has two o'sMoo?re
if you only remember a part of the author's name.*gabe.* or simply gabe
if you search for articles of different authors at the same time Rugaber|DeBaud
if you search for articles two authors wrote together (Rugaber.*DeBaud) | (DeBaud.*Rugaber)
if you search for articles of Rugaber with DeBaud or Moore(Rugaber .* (Moore | DeBaud)) | ((Moore | DeBaud) .* Rugaber)
koschke@informatik.uni-stuttgart.de (Feedback).
Copyright © 1997 University of Stuttgart, Germany. $Revision: 1.2 $
Last modified: Fri Sep 12 15:50:09 MET DST 1997