我試圖使用Python提供的re
模塊,但我認爲我錯過了一些東西。我想要做的是能夠說出一個給定的模式是否在一個句子中,例如:查找句子中的模式
我有我的句子「天空今天是藍色的」 而且我想找到blu* tod*
模式是否在裏面這句話
我試過很多東西,如:
data = 'The sky is blue today'
pattern = 'blu*\stod*
re.match(pattern,data,re.IGNORECASE) // doesn't worked
pattern = [blu+]\s[tod+]
re.search(pattern,data) // Match everything in my sentence, even if the pattern isn't inside
有人能幫助我嗎?或者,也許可以給我一個關於在句子中查找正則表達式的好教程?
謝謝。
謝謝,它的工作! – Kobz