• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/14

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

14 Cards in this Set

  • Front
  • Back
\w
letter of digit; same as [0-9A-Za-z]
\W
neither letter or digit
\s
space character; same as [ \t\n\r\f]
\S
non-space character
\d
digit character; same as [0-9]
\D
non-digit character
\b (only if in a range specification)
backspace
\b (if not in a range specification)
word boundary
*
zero or more repetitions of preceding
+
one or more repetitions of the preceding
{m, n}
at least m and at most n repetitions of the preceding
?
at most one repetition of the preceding; same as {0, 1}
|
either preceding or next expression may match
()
grouping