Created
September 24, 2017 08:51
-
-
Save CoditCompany/f2b851ae712b275741b01cecc1f8e307 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) |>> cap2 | |
| let fullname = countString 20 (letter <|> space) |>> stringAZ | |
| let street = countString 20 (letter <|> space <|> digit) |>> stringAZ123 | |
| let city = countString 15 (letter <|> space) |>> stringAZ | |
| let state = countString 3 (caps <|> space) |>> cap2 | |
| let postal = countString 5 (caps <|> digit <|> space) |>> (int >> posint5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment