Skip to content

Instantly share code, notes, and snippets.

@Akii
Created May 31, 2017 21:00
Show Gist options
  • Save Akii/c1dbc1628dbfd70dcc7248f324ff4aea to your computer and use it in GitHub Desktop.
Save Akii/c1dbc1628dbfd70dcc7248f324ff4aea to your computer and use it in GitHub Desktop.
-- pokeNameLine is "Mimikyu @ Ghostium Z \n" (where \n represents newline)
pokeNameLineParser :: Parser (String,String)
pokeNameLineParser = do
name <- manyTill anyChar (spaces <* char '@' *> spaces)
thingAfterAt <- manyTill anyChar newline
return (name, thingAfterAt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment