Created
September 8, 2017 06:36
-
-
Save CoditCompany/c454c7f32b380b6fea2caecb2c560d6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let country = countString 10 (caps <|> space) | |
| let fullname = countString 20 (letter <|> space) | |
| let street = countString 20 (letter <|> space <|> digit) | |
| let city = countString 15 (letter <|> space) | |
| let state = countString 3 (caps <|> space) | |
| let postal = countString 5 (caps <|> digit <|> space) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment