Name: Class: COSC 231-1 Date: 10/21/2013 EASIES (1) recognize a 5 digit zip code. Ex: 48197 (2) recognize a 5 digit or 9 digit zip code that is in the state of Michigan. Ex: 48103-9816 (3) recognize an emich email address (4) a filename is between 1 and 25 alphanumeric characters ---> recognize a filename (5) consider this pattern: /\w\d\D/ --> give an example of a string that will match --> give an example of a string that will not match (6) consider this pattern: /\b\d{5}/ --> give a string that will match --> give a string that will not match MEDIUMS (7) recognize a UK postal code: one or two letters, digit, optional letter, space, digit, two letters. Ex: MM1C 1MM A9 9MM (8) a title is Mr, Ms, Mrs, Dr a name is between 2 and 10 characters --> recognize a title, blank, name (9) consider this pattern: /t[a-z]+/ ---> give an example of string that will match ---> give an example of string that will not match (10) consider this pattern: /\bMr[s]\b/ ---> give an example of a string that will match ---> give an example of a string that will not match HARDS (11) consider this pattern: /[^0-3][^a-c](\d+|\w+)/ --> give a string that will match --> give a string that will not match (12) consider this pattern: /^\d{2,3}\s+\w{3}$/ ---> give a string that will match ---> give a string that will not match (13) give a pattern that will recognize any number of 1s followed by a single 0 followed by any number of 1s. (the sequences of 1s can have different counts)