• 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
Grep Symbol "."
Any Single Character
Grep Symbol "\x"
A character represented by its ASCII value in hex. Both hex digits should be present, even if they are 0.
Grep Symbol "\w"
Unicode 16 bit character
Grep Symbol "?"
Repeat the preceeding character or set 1 or 0 times.
Grep Symbol "*"
Repeat the preceeding character or set 0 or Many times.
Grep Symbol "+"
Repeat the preceeding character or set 1 or Many times.
Grep Symbol "#"
Any single digit 0-9
Grep Symbol "()"
The parenthesis allow the examiner to group individual characters together as an AND statement.
Grep Symbol "[]"
The brackets allow the examiner to group individual characters together as an OR statement.
Grep Symbol "[^]"
A circumflex at the start of the string in brackets means NOT.
Grep Symbol "[-]"
A dash within the brackets signifies a range of characters.
Grep Symbol "\"
A backslash before a character indicates that the character is to be treated literally and not as a GREP character.
Grep Symbol "{}"
The curry braces state number of times to repeat. i.e. {m,4} = m four times
Grep Symbol "|"
The pipe is an OR statement, and can be used with the parentheses.