我想刪除包含數字,實例的所有單詞:正則表達式替換混合數字+字符串
LW23 London W98 String
從上面我想保持唯一的字符串是"London String"
。這可以用正則表達式來完成。
我目前使用Python,但PHP代碼也很好。
謝謝!
編輯:
這裏是我可以現在做的事:
>>> a = "LW23 London W98 String"
>>> b = a.split(' ')
>>> a
['LW23', 'London', 'W98', 'String']
[正則表達式來刪除一個句子包含數字的所有單詞(http://stackoverflow.com/questions/11024174/regex-to-de lete-all-words-containing-numbers-from-a-sentence) – F0G