I have two strings:
a = 'B E R L I N IS A CITY'
b = 'PARIS IS A CITY, TOO'
I want to match the first word in case it is with a single space, or a predefined word.
The regular expression I came up with (Python) is
regex = re.compile('^(?P<city>([a-z] )*|(paris )).*$', re.IGNORECASE)
print regex.match(a).group('city'), regex.match(b).group('city')
>>>> ('B E R L I N ', '')
Paris is not being matched. But when I turn around the regular expression,
regex = re.compile('^(?P<city>(paris )|([a-z] )*).*$', re.IGNORECASE)
print regex.match(a).group('city'), regex.match(b).group('city')
>>>> ('B E R L I N ', 'PARIS ')
Paris is being matched. What am I missing?