1. 程式人生 > >python-提取一串字串中的數字

python-提取一串字串中的數字

有時候,我們需要把一串字串中的數字提取出來,那麼python中提供了isdigit()函式來判斷字元是否是數字。

問題:提取‘abc123qwer456tyui789’這個字串中的數字並打印出來。

程式例項:

str = 'abc123qwer456tyui789'
num ''.join([x for x in str if x.isdigit()])
print(num)
執行結果如下圖: