Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > 4ae558a1d1cf2adf8310c8bc372500f5 > files > 36

pyparsing-1.5.0-5.fc12.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 )