First page Back Continue Last page Overview Graphics
Anchor Reform
- Cleaning up the \a \A \z \Z rubbish
- ^ is the real beginning of the string
- $ is the real end of the string
- ^^ and $$ match lines within a string
- . always matches any character, now including newline
- \n is a logical line ending
- \N is not a line ending (matches one character)