Home arrow JavaScript arrow Page 4 - Regular expressions in JavaScript
JAVASCRIPT

Regular expressions in JavaScript


JavaScript is useful for a lot more than opening pop-ups. If you use HTML forms on your website, and want to make sure that your visitors submit valid data on those forms, you might want to consider using some regular expressions in JavaScript. Alejandro Gervasio explains how, with many excellent examples.

Author Info:
By: Alejandro Gervasio
Rating: 4 stars4 stars4 stars4 stars4 stars / 202
December 20, 2004
TABLE OF CONTENTS:
  1. · Regular expressions in JavaScript
  2. · The Basics
  3. · Character Escaping
  4. · Repetition
  5. · Counted Subexpressions
  6. · Using regular expressions in JavaScript
  7. · The match() method
  8. · The replace() method
  9. · The test() method

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
Regular expressions in JavaScript - Repetition
(Page 4 of 9 )

Often, it’s useful to specify that there might be multiple occurrences of a particular string. We can represent this using the following special characters: “?”, “+” and “*”. Specifically, “?” means that the preceding character is optional, “+” means one or more of the previous character, while “*” means zero or more of the previous character.

Let’s see some examples to clarify this concept:

comput?er    // Matches “computer” and “compuer”, but not “computter”.

comput+er   // Matches “computer” and “computter”, but not “compuer”.

comput*er   // Matches “compuer” and “computter” but not “coputer”.

^[a-zA-Z]+$   // Matches any string of one or more letters and nothing else.

Subexpressions

Sometimes, it’s good to be able to split an expression into subexpressions, so, it’s possible, for example, to represent “at least one of these strings followed by exactly one of those.” We can achieve this using parentheses and combinations of the special characters ?,+ and *, exactly as we would do in an arithmetic expression.

For example,

(good)?computer    // Matches “good computer” and “computer”, but not “good good computer”.

(good)+computer   // Matches “good computer” and “good good computer” but not “computer”.

(good)*computer   // Matches “computer” and “good good computer” but not “good computers”.


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Tutorials for Beginners
- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 8 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials