Skip to Content
ActionScript 3.0 Cookbook
book

ActionScript 3.0 Cookbook

by Joey Lott, Darron Schall, Keith Peters
October 2006
Intermediate to advanced
586 pages
15h 7m
English
O'Reilly Media, Inc.
Content preview from ActionScript 3.0 Cookbook

Chapter 13. Regular Expressions

Introduction

One of the most powerful features added to ActionScript 3.0 is regular expressions (more commonly known as regexes or regexps). Regular expressions are, put simply, patterns that can be matched against strings. You may be familiar with other types of patterns, such as wildcards (e.g., * and ?), which can be used to match patterns while searching for files. Patterns are also used in Recipe 9.5. Regular expressions support this type of pattern matching, but they are also much more sophisticated.

Regular expressions can be useful in many situations. For instance, the patterns can be applied against strings to perform a variety of tasks, including:

  • Finding substrings beginning with a vowel (a, e, i, o, or u)

  • Extracting specific values within a string, such as the year value from a full date

  • Validating user input to ensure an email address is formatted correctly

  • Stripping out HTML tags from a block of text to remove the markup

The patterns used for regular expressions are built by combining characters that have special meaning and can range from being very simple:

[a-zA-Z]

to being extremely complex and cryptic, such as this regex for matching a valid IP address:

^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])$

Simple patterns, such as .*, are easy to understand, but more complex patterns are difficult to learn and are even harder to implement. Thankfully, every ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Actionscript Cookbook

Actionscript Cookbook

Joey Lott
ActionScript 3.0 Bible

ActionScript 3.0 Bible

Roger Braunstein

Publisher Resources

ISBN: 0596526954Errata Page