Regular Expressions

Asterisk on STEROIDS !!

Resources

Introduction

This introduction will enable us to do the following:

The fat cat ran down the street.
It was seraching for a mouse to eat.

Using the websites above (eg https://regexr.com ) in the text field we have written some text to be searched by regex with the global and multiline selected. I will remove the multi-line option to keep it as close to normal regex as possible.

What is RegEx

RegEx is the shortened word for Regular Expression. A regular expression is a way of searching through text files - such as logfiles etc. in an efficient and painless way as possible. We can also do advanced 'find and replace.

^a . . .s$

The caret means "at the beginning

Last updated