我在與一個Python正則表達式困難正則表達式結束。我想罰款任何N,S,E,W,NB,SB,EB,WB,包括字符串的開頭或結尾。我的正則表達式很容易在中間找到它,但在開始或結束時都失敗。麻煩匹配圖案或在Python
任何人都可以建議我在做什麼毛病dirPattern我下面的代碼示例?
注:我知道我有一些其他的問題來處理(例如,「W的」),但想我知道如何修改正則表達式的。
在此先感謝。
import re
nameList = ['Boulder Highway and US 95 NB', 'Boulder Hwy and US 95 SB',
'Buffalo and Summerlin N', 'Charleston and I-215 W', 'Eastern and I-215 S', 'Flamingo and NB I-15',
'S Buffalo and Summerlin', 'Flamingo and SB I-15', 'Gibson and I-215 EB', 'I-15 at 3.5 miles N of Jean',
'I-15 NB S I-215 (dual)', 'I-15 SB 4.3 mile N of Primm', 'I-15 SB S of Russell', 'I-515 SB at Eastern W',
'I-580 at I-80 N E', 'I-580 at I-80 S W', 'I-80 at E 4TH St Kietzke Ln', 'I-80 East of W McCarran',
'LV Blvd at I-215 S', 'S Buffalo and I-215 W', 'S Decatur and I-215 WB', 'Sahara and I-15 East',
'Sands and Wynn South Gate', 'Silverado Ranch and I-15 (west side)']
dirMap = {'N': 'North', 'S': 'South', 'E': 'East', 'W': 'West'}
dirPattern = re.compile(r'[ ^]([NSEW])B?[ $]')
print('name\tmatch\tdirSting\tdirection')
for name in nameList:
match = dirPattern.search(name)
direction = None
dirString = None
if match:
dirString = match.group(1)
if dirString in dirMap:
direction = dirMap[dirString]
print('%s\t%s\t%s\t%s'%(name, match, dirString, direction))
一些樣品預期輸出:
name match dirSting direction
Boulder Highway and US 95 NB <_sre.SRE_Match object at 0x7f68af836648> N North
Boulder Hwy and US 95 SB <_sre.SRE_Match object at 0x7f68ae836648> S South
Buffalo and Summerlin N <_sre.SRE_Match object at 0x7f68af826648> N North
Charleston and I-215 W <_sre.SRE_Match object at 0x7f68cf836648> W West
Flamingo and NB I-15 <_sre.SRE_Match object at 0x7f68af8365d0> N North
S Buffalo and Summerlin <_sre.SRE_Match object at 0x7f68aff36648> S South
Gibson and I-215 EB <_sre.SRE_Match object at 0x7f68afa36648> E East
然而,開始或結束的例子給:
Boulder Highway and US 95 NB None None None
'^'和'$'*括號內*並不意味着仍然字符串的開始/結束,你知道嗎? – jonrsharpe
喬恩,謝謝,我不知道,雖然我開始懷疑這一點。 –
你想要做什麼?你也可以使用'direction = dirMap.get(dirString)',如果字典 –