...

/

Regular Expressions (Regex)

Regular Expressions (Regex)

This lesson gives a conceptual summary of regular expressions.

We'll cover the following...

Regular expressions are a powerful way to filter out specific pieces of information by using various arithematic patterns to describe certain set of strings.

You are probably now familiar with the wildcards e.g. *.txt to find all text files in some directory. Its regex would be something like this: ^.*\.txt$.. ...