Regex-what-is-a-pattern

Objectives

  • Understand the purpose of patterns and regular expressions ("RegEx").

  • Learn a bit about the history of RegEx.

  • Understand that the version of RegEx we use is but one of many implementations.

Introduction

Say you're working at your new job as a developer and your supervisor asks you to build in validation for the email field in the company's signup form. There have recently been a lot of sign-ups with invalid email addresses (e.g., "joeflatiron.com", "@helloworld.com", and "$%!-adam@gmail.com"). First, you sit down and come up with a set of rules that any email address should adhere to (stop reading and see how many you can come up with):

  • Numbers, letters, dashes, and underscores are ok.

  • Uppercase and lowercase letters are ok.

  • %, ?, $, !, * are not valid characters.

  • There must be an @ separating the local part from the domain part.

  • There must be at least one period in the domain part (e.g., gmail.com).

  • Two periods in a row (..) are not allowed.

  • The local (first) part of the email cannot start with a period.

We now have a pattern that we know all email addresses must follow. We use regular expressions to encode these patterns for matching, searching, and substitution. Here's a sample RegEx for email validation:

/[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/i

If this doesn't make any sense, don't worry. We'll be covering how to write and read regular expressions shortly.

(There are actually a LOT more rules for email addresses, but you get the point.)

About RegEx

History

RegEx came about in the 1950's and 1960's in various forms. Among the first appearances of regular expressions in program form was when Ken Thompson built Stephen Cole Kleene's notation into the editor QED as a means to match patterns in text files. Since then, there have been various implementations of regular expressions developed. We'll be using Ruby regular expressions, an implementation mostly based off the PERL language.

When to use RegEx

Regular expressions are an extremely powerful way to search through strings and blocks of text for specific patterns. They can be used for data validation, searching, mass file renaming, and finding records in a database. Use them carefully. They are like a surgeon's scalpel: able to do a lot of harm or good, depending on how skillfully they are wielded.

View RegEx - What Is A Pattern? on Learn.co and start learning to code for free.

Last updated