show/hide this revision's text 2 added 83 characters in body

Regular expressions have a mathematical (actually, language theory) background and are coded somewhat like a mathematical formula. You can define them by a set of rules, for example

  • every character is a regular expression, representing itself
  • if a and b are regular expressions, than then a?, a|b and ab are regular expressions, too
  • ...

Using a keyword-based language would be a great burden for simple regular expressions. Most of the time, you will just use a simple text string as search pattern:

grep -R 'main' *.c

Or maybe very simple patterns:

grep -c ':-[)(]' seidl.txt

Once you get used to regular expressions, this syntax is very clear and precise. In more complicated situations you will probably use something else since a large regular expression is obviously hard to read.

show/hide this revision's text 1

Regular expressions have a mathematical background and are coded somewhat like a mathematical formula. You can define them by a set of rules, for example

  • every character is a regular expression
  • if a and b are regular expressions, than a|b and ab are regular expressions, too
  • ...

Using a keyword-based language would be a great burden for simple regular expressions. Most of the time, you will just use a simple text string as search pattern:

grep -R 'main' *.c

Or maybe very simple patterns:

grep -c ':-[)(]' seidl.txt

Once you get used to regular expressions, this syntax is very clear and precise. In more complicated situations you will probably use something else since a large regular expression is obviously hard to read.