diff options
author | Aaron Weber <aaron@helixcode.com> | 2000-08-31 22:53:41 +0800 |
---|---|---|
committer | Aaron Weber <aaron@src.gnome.org> | 2000-08-31 22:53:41 +0800 |
commit | 95c68912699be41ba05576c180e37613bf72c25e (patch) | |
tree | e16fa5171b90395e4cb95fdf4bd02c9e3661fb48 /help/C/apx-gloss.sgml | |
parent | c4982eded3e78276bd2265c2b81e27d914f5b63d (diff) | |
download | gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.tar gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.tar.gz gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.tar.bz2 gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.tar.lz gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.tar.xz gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.tar.zst gsoc2013-evolution-95c68912699be41ba05576c180e37613bf72c25e.zip |
Added regular expressions to glossary. Explanation should be removed from
2000-08-31 Aaron Weber <aaron@helixcode.com>
* C/apx-gloss.sgml: Added regular expressions to glossary.
Explanation should be removed from other portions of the book now.
* C/usage-mainwindow.sgml: Revisions, minor.
* C/apx-menuref.sgml: Now named menuref.sgml, to reflect its new
status as a part.
* C/evolution-guide.sgml: Structural alterations: Menuref is now a
part, not an appendix.
* C/apx-menuref.sgml: Added contextual menus for mail.
svn path=/trunk/; revision=5140
Diffstat (limited to 'help/C/apx-gloss.sgml')
-rw-r--r-- | help/C/apx-gloss.sgml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/help/C/apx-gloss.sgml b/help/C/apx-gloss.sgml index 0f1b73ff09..5693ecda1c 100644 --- a/help/C/apx-gloss.sgml +++ b/help/C/apx-gloss.sgml @@ -227,6 +227,22 @@ </glossdef> </glossentry> + <glossentry id="regular-expression"> + <glossterm>Regular Expression</glossterm> + <glossdef> + <para> + A regular expression, or "regex", is a way of describing a + string of text using metacharacters or wildcard symbols. For + example, the statement <userinput>fly*so[a|u]p</userinput> means + "any phrase beginning with 'fly' and ending in 'soup' or + 'soap'". If you searched for that expression, you'd find both + "fly in my soup" and "fly in my soap." There's not room here to + go into depth, but if you want, have a look at the documentation + for the <command>grep</command> command. + </para> + </glossdef> + </glossentry> + <glossentry id="script"> <glossterm>Script</glossterm> <glossdef> @@ -282,3 +298,17 @@ </glossentry> </glossary> + + + + + + + + + + + + + + |