python怎麼檢測字串是否有字母?

pswyjz發表於2021-09-11

python怎麼檢測字串是否有字母?

python中可以使用正規表示式[a-zA-Z]來匹配字串中是否有字母。

import re
str0='123m123'
str1='123123'
print(bool(re.search('[a-zA-Z]', str0)))
print(bool(re.search('[a-zA-Z]', str1)))

輸出結果:

True
False

re.search 掃描整個字串並返回第一個成功的匹配。

函式語法:

re.search(pattern, string, flags=0)

更多Python知識請關注。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/755/viewspace-2833601/,如需轉載,請註明出處,否則將追究法律責任。

相關文章