Building our environment
In order to test our Regex patterns, we will build an HTML form, which will process the supplied pattern and match it against a string.
I am going to keep all the code in a single file, so let's start with the head of the HTML document:
<!DOCTYPE html> <html lang="en"> <head> <title>Regex Tester</title> <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <style> body{ margin-top: 30px; } .label { margin: 0px 3px; } </style> </head>
Tip
Downloading the example code
You can download the example code files from your account at http://www.packtpub.com for all the Packt Publishing books you have ...
Get JavaScript Regular Expressions 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.