2013-03-15 169 views

回答

5

簡單,使用負字符類中的正則表達式:

import re 

re.sub('[^a-zA-Z]', '', inputstring) 

[....]表示字符類。通常情況下,課堂上的任何東西都會匹配在開始時加入^插入符號,否定課程;什麼不是在課上匹配。

結果:

>>> import re 
>>> re.sub('[^a-zA-Z]', '', '"[email protected]#$%^&*(())___+t" "test1" "test3N"') 
'testtesttestN'