Skip to content

Instantly share code, notes, and snippets.

@CoditCompany
Created September 24, 2017 08:51
Show Gist options
  • Select an option

  • Save CoditCompany/f2b851ae712b275741b01cecc1f8e307 to your computer and use it in GitHub Desktop.

Select an option

Save CoditCompany/f2b851ae712b275741b01cecc1f8e307 to your computer and use it in GitHub Desktop.
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