Skip to content

Instantly share code, notes, and snippets.

@rezkam
Created June 1, 2013 19:10
Show Gist options
  • Save rezkam/5691405 to your computer and use it in GitHub Desktop.
Save rezkam/5691405 to your computer and use it in GitHub Desktop.
from pyparsing import Word, alphas
greet = Word( alphas ) + "," + Word( alphas ) + "!" # <-- grammar defined here
hello = "Hello, World!"
print (hello, "->", greet.parseString( hello ))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment