• 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/5

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;

5 Cards in this Set

  • Front
  • Back

What is a simple RegEx (Regular Expressions) search to look for car/CAR but not scar/carry?

\b[Cc][Aa][Rr]\b

What is the value of RegEx?

The real power of regex is seen in replace operations that you could not do with a regular search and replace in a text editor.
e.g. replace www.mywebsite with HTML code that makes it a valid hyperlink.

Using REGEX, how do you search for:
any of a, b, or c

[abc] any of a, b, or c

Using REGEX, how do you search for:


not a, b, or c

[^abc] not a, b, or c

Using REGEX, how do you search for:


character between a & g

[a-g] character between a & g