Go to the first, previous, next, last section, table of contents.


The Concatenation Operator

This operator concatenates two regular expressions a and b. No character represents this operator; you simply put b after a. The result is a regular expression that will match a string if a matches its first part and b matches the rest. For example, `xy' (two match-self operators) matches `xy'.


Go to the first, previous, next, last section, table of contents.