Administration
  Home arrow Administration arrow Page 2 - So What's A $#!%% Regular Expression, Anyway?!
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
ADMINISTRATION

So What's A $#!%% Regular Expression, Anyway?!
By: Vikram Vaswani and Harish Kamath, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 5
    2000-04-12


    Table of Contents:
  • So What's A $#!%% Regular Expression, Anyway?!
  • Ranging Far And Wide...
  • How To Say "Ummmm...." In Three Different Languages

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    So What's A $#!%% Regular Expression, Anyway?! - Ranging Far And Wide...
    ( Page 2 of 3 )

    Just as you can specify a range for the number of characters to be matched, you can also specify a range of characters. For example, the range

    /[A-Z]/
    would match a single instance of all upper-case alphabetic characters, while

    /[a-z]/
    would match all lowercase letters, and

    /[0-9]/
    would match all numbers between 0 and 9.

    Using these three ranges, it's pretty easy to create a regular expression to match an alphanumeric field.

    /([a-z][A-Z][0-9])+/
    would match a string that was purely alphanumeric in nature, like "aB0" - although not "abc". Note the parentheses around the patterns - contrary to what you might think, these are not there purely to confuse you; they come in handy when grouping sections of a regular expression together.

    Choice is very important when building regular expressions - as in most other languages, it's possible to use the pipe [|] operator to indicate multiple options in a regex. For example,

    /to|too|2/
    would match any one of the three strings "to", "too" and "2". As you can imagine, this comes in pretty useful when building expressions that have many possible variants.

    You can also invert the regular sense of a regular expression with the negation operator, represented by a caret [^] - so the pattern

    /[^A-C]/
    would match everything but that which appears in the expression - namely, everything except the letters "A", "B" and "C". Note how the caret, when used in a bracketed expression, is used to invert the match; this behaviour is different from when it is used outside a bracketed expression, where it serves as a pattern anchor.

     
     
    >>> More Administration Articles          >>> More By Vikram Vaswani and Harish Kamath, (c) Melonfire
     

       

    ADMINISTRATION ARTICLES

    - Network Booting via PXE: the Basics
    - Scalix: Linux Administrator`s Guide
    - Network Administration with FreeBSD 7
    - Components of an Information Architecture
    - The Anatomy of an Information Architecture
    - Configuring Load-Balanced Clusters
    - Load-Balanced Clusters
    - UNIX Time Format Demystified
    - Making Changes in the CVS
    - Building Your First CVS Repository
    - CVS Quickstart Guide
    - Authorizing Users in Samba
    - Handling User Accounts in Samba
    - Authentication in Samba
    - Accounts, Authentication, and Authorization





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek