^[A-Z]*\d+$	Upper case numbering				#Upper case with numbers
^\d+\s$		Watch that whitespace				#Numbers with spaces
^\s\d+$		Watch that whitespace				#Spaces with numbers
^[A-Z]*\s$	Watch that whitespace 				#Uppercase with spaces
^[a-z]*\s$	Watch that whitespace 				#lower case with space
^\s[A-Z]*$	Watch that whitespace 				#spaces with Upper case
^\s[a-z]*$	Watch that whitespace 				#spaces with lower case
^[a-z]*$	Mix those cases 				#all lower case
^\d+$		It's passWORD not NUMBER			#all numbers
^[a-z]*\d+$	Something a little more complex please		#lower case with number
^[A-Z]*$	no need to SHOUT your choice 			#all uppercase
^\d+[a-z]*$	Something a little more complex please 		#number and lower case
^\d+[A-Z]*$	Something a little more complex please		#number and upper case
^[A-Z]*[a-z]$	A little backwards today?			#all upper followed by lower
^[A-Z][a-z]*$	Standard capitolization				#Standard first letter cap.
^[a-z][A-Z]*$	Feeling a little shifty today			#Backwards of above
^[a-z]*[A-Z]$	Mix it up a little more				#all lower with last cap.
