Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Pattern

Description

_

Stands for any single character.

%

Stands for any sequence of zero or more characters.

{*

Denotes repetition of the previous item zero or more times.

+

Denotes repetition of the previous item one or more times.

?

Denotes repetition of the previous item zero or one time.

{ |

Denotes alternation (either of two alternatives).

...