First page Back Continue Last page Overview

 

Modifiers

 
  • Modifiers determine the number of the previous character

    • * zero or more of the previous char
    • \+ one or more of the previous char
    • \? zero or one of the previous char
    • \{i\} exactly i of the previous character
    • \{i,\} i or more of the previous char
    • \{i,j\} i to j of the previous character