|
|
|
| home | feedback | |
Top: Computers: Programming: Languages: Regular_Expressions
Sites that provide content about Regular Expressions.
Regular Expressions
Regular expressions are a powerful tool that allow you to specify patterns that match a particular description. Regular expressions are used by, among others, the grep, sed and vi programs.Using Regular Expressions
The most basic regular expression is simply a number of characters. For instance, foo is a simple regular expression, only matching the pattern foo. Thus, to search for foo in a file, type grep foo file. The power of regular expressions come from metacharacters...characters that specify an action. For instance, the. character matches any character, so foo. will match food, fool and foot. If you wish to use a metacharacter as a real character, quote it with '\'. Thus, foo\. will only match foo..
This category lists sites with information about C++ and C libraries for regular expression handling.
FAQs, Help and tutorials about various aspects of the Regular Expression Syntax. FAQs are collections of (F)requently (A)sked (Q)uestions along with their answers.
This category lists sites with information about Java libraries for regular expression handling.
Research papers on the subject of regular expressions.
| Copyright © 1998-2002 Netscape |