List of Tables
-
Table 5-1: Pulling a General Regex Pattern from 614-345-6789
-
Table 5-2: Pushing \d{3}-\d{3}-\d{4} to Accommodate Seven-Digit Numbers
-
Table 5-3: Removing References to - from \d{3}-\d{3}-\d{4} to Accommodate the Data Scrub
-
Table 5-4: Making the Zip Code Pattern More Lenient and Efficient
-
Table 5-5: Pulling a General Regex Pattern from 614-345-6789
-
Table 5-6: Pulling a General Regex Pattern from @45#78
-
Table 5-7: Pulling an EDI Regex out of @[^@]*#([^@][^#])*
-
Table C-1: IP Address ^(([0-1]?\d{1,2}\.)|(2[0-4]\d\.)|(25[0-5]\.)){3} (([0-1]?\d{1,2})|(2[0-4]\d)|(25[0-5]))$
-
Table C-2: Simple E-mail ^(\p{Alnum}+(\.|\_|\-)?)*\p{Alnum}@(\p{Alnum}+ (\.|\_|\-)?)*\p{Alpha}$
-
Table C-3: Digit Repeated Exactly n Times \d{n}, Where n Is the Number of Digits Needed
-
Table C-4: Characters Repeated Exactly n Times \w{n}, Where n Is the Number of Characters Needed
-
Table C-5: Characters Repeated n to m Times \w{n.m}, Where n Is the Number of Characters Needed
-
Table C-6: Credit Cards: Visa, MasterCard, American Express, and Discover ^((4\d{3})|(5[1-5]\d{2})|(6011))-?\d{4}-?\d{4}-?\d{4}|3[4,7]\d{13}$
-
Table C-7: Real Number ^[+-]?\d+(\.\d+)?$