Regex Cards - Powerpoint Format

Post on 11-Jul-2015

1.184 views 3 download

Tags:

Transcript of Regex Cards - Powerpoint Format

/pattern/optionsRegex syntax

[abc]A single character: a, b, or c

[^abc]Any single character but a, b, or c

[a-z]Any single character in the range a-z

[a-zA-Z]Any single character in the range a-z or A-Z

^Start of line

$End of line

\AStart of string

\zEnd of string

.Any single character

\sAny whitespace character

\SAny non-whitespace character

\dAny digit

\DAny non-digit

\wAny word character (letter, number, underscore)

\WAny non-word character

\bAny word boundary character

(...)Capture everything enclosed

(a|b)a or b

a?Zero or one of a

a*Zero or more of a

a+One or more of a

a{3}Exactly 3 of a

a{3,}3 or more of a

a{3,6}Between 3 and 6 of a

iCase insensitive option.

iCase insensitive option.

mmake dot match newlines

xignore whitespace in regex

www.rubular.comCredit for content and a great tool for practicing.