July 2014
Beginner to intermediate
552 pages
18h 28m
English
In This Chapter
Validating an Email Address with Regular Expressions
Formatting and Sorting Strings
Regular expressions are an amazingly powerful way to validate and format text strings. Using regular expressions, you can write a line or two of JavaScript code that can accomplish tasks that otherwise would have taken several dozen lines.
A regular expression (often abbreviated as RegExp or called by its synonym grep) is a pattern—written using special symbols—that describes one or more text strings. You use regular expressions to match patterns of text so that your script ...
Read now
Unlock full access