summaryrefslogtreecommitdiff
path: root/src/examples/greetingInGreek.py
blob: c4d002f198d4b9466369e328fa4e42607c38b2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# vim:fileencoding=utf-8 
#
# greetingInGreek.py
#
# Demonstration of the parsing module, on the prototypical "Hello, World!" example
#
# Copyright 2004-2016, by Paul McGuire
#
from pyparsing import Word 

# define grammar
alphas = ''.join(chr(x) for x in range(0x386, 0x3ce)) 
greet = Word(alphas) + ',' + Word(alphas) + '!' 

# input string
hello = "Καλημέρα, κόσμε!".decode('utf-8') 

# parse input string
print(greet.parseString( hello ))