Regular Expressions
Metacharacters - SubExpression Grouping
( | ) Limit Alternation
/gr(e|a)y/

grey
gray

/get (this|that)/

get this thing
get that stuff
Earlier Example
Note: using /gr[ea]y/ would be equivilant
Tux the Linux Penguin.