URL Mapping - ApacheCon 2005
Regular Expressions
    
     .   Matches anything
    
      
    
     +   "one or more"
    
      
    
     *   "zero or more"
    
      
    
     ?   "optional"
    
      
    
     ^   Beginning of string
    
      
    
     $   End of string
     
     ( )  Groups and/or captures
    
      
    
     [ ]  Character class - Match one of the characters in here
    
      
    
     ^ in a character class means "not"
    
      
Index
Back to Regular Expressions
Forward to Regular Expressions, examples

ApacheCon 2005 : URL Mapping - Slide #13 of 45