Interpretation of Special Character Strings
^ Match At The Beginning Of A Line
[LIST] Match A Single Character In A Specified List.
[^LIST] Negate Matching a Single Character In Specified List.
* Repeat The Expression Zero Or More Times
+ Repeat Previous Expression One Or More Times
? REPEAT PREVIOUS EXPRESSION ZERO OR ONE TIME
() Grouping of Regular Expressions
| Union of Regular Expressions
Examples of Spanning Characters
Results of Inelegant Expression
Globally Replacing Pattern Matches
Why Should I Care About Regular Expressions?
/regular expression/ {statement(s)}
compound pattern {statement(s)}
pattern1,patern2 {statement(s)}
Regular Expression and Substituting
Manipulating Associative Arrays
PERL Regular Expression Character Class
A Simple Examination of Character Classes
Match Operator Example With Assignments
Program Generating Individual Files
Globally Replace Square Braces
Multiple Pattern Matches with awk script
Multiple Patterns Converted to PERL
Subroutine definitions (Simple Approach)
Subroutine definition for checkinodes()
Subroutine for checkdiskspace()