Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 99ce1158621862240f19ba9fc221bc5f > files > 28

pyparsing-doc-1.5.6-8.fc18.noarch.rpm

# greeting.py
#
# Demonstration of the pyparsing module, on the prototypical "Hello, World!"
# example
#
# Copyright 2003, by Paul McGuire
#
from pyparsing import Word, alphas

# define grammar
greet = Word( alphas ) + "," + Word( alphas ) + "!"

# input string
hello = "Hello, World!"

# parse input string
print hello, "->", greet.parseString( hello )