Penguin
Diff: RegularExpression
EditPageHistoryDiffInfoLikePages

Differences between current version and revision by previous author of RegularExpression.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 11 Last edited on Thursday, July 6, 2006 10:47:58 pm by AlastairPorter
Older page: version 10 Last edited on Thursday, July 6, 2006 4:14:00 pm by PerryLorier Revert
@@ -9,18 +9,18 @@
 but not: 
  axbcde 
  
 Quick cheatsheet 
-|^__Charactor __|^__Matches__  
-| . | Any single charactor  
+|^__Character __|^__Matches__  
+| . | Any single character  
 | ^ | Beginning of line 
 | $ | End of line 
-| \''any charactor '' | Match ''any charactor '' exactly (even if it's a special charactor )  
-| [[''charactor group''] | Any single charactor in the group 
+| \''any character '' | Match ''any character '' exactly (even if it's a special character )  
+| [[''character group''] | Any single character in the group 
  
 Things that alter the previous expression 
  
-|^__Charactor __|^__Alteration__ 
+|^__Character __|^__Alteration__ 
 | ? | Match the previous expression exactly zero or one times 
 | * | Match the previous expression zero or more times 
 | + | Match the previous expression one or more times