Chapter 18. Regular Expressions in ColdFusion

Anyone who has ever worked with regular expressions knows what an indispensable tool they can be for parsing and manipulating text. Without them, text-processing operations such as search and replace can be very difficult, to say the least. Those with experience in Unix-based languages such as Perl, awk, or Tcl are probably already familiar with regular expressions, as they are used extensively in those languages. For those new to the world of regular expressions, don’t worry. This chapter shows you everything you need to know to start using regular expressions in your ColdFusion applications.

ColdFusion provides you with two sets of ColdFusion functions for finding and replacing strings using regular expressions. REFind( ) and REFindNoCase( ) search for strings within blocks of text, while REReplace( ) and REReplaceNoCase( ) perform search and replace operations. Both sets of functions are extremely powerful and allow you to add a whole host of useful text-manipulation features to your ColdFusion applications.

Before we get into the mechanics of regular expressions, it is important for you to gain a basic understanding of the regular-expression language and how it is used by ColdFusion. Note that the regular-expression engine in ColdFusion MX differs significantly from the engine in all previous versions of ColdFusion. The new engine is “Perl compatible” for the most part, and it uses an underlying Java library for processing regular ...

Get Programming ColdFusion MX, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.