0
我是新來的正則表達式。我想寫一個匹配'。'的正則表達式。例如,在字符串「The crack of Sound,Splintering。一個形狀出現在冰上」中,正則表達式應該提取「Splintering」,然後用一個空白加上一個單詞(不包含空白)。正則表達式:匹配fullstop和python中的一個單詞
例如,和 「A」
我是新來的正則表達式。我想寫一個匹配'。'的正則表達式。例如,在字符串「The crack of Sound,Splintering。一個形狀出現在冰上」中,正則表達式應該提取「Splintering」,然後用一個空白加上一個單詞(不包含空白)。正則表達式:匹配fullstop和python中的一個單詞
例如,和 「A」
import re
input = 'The sound of cracking. Splintering. A shape appears, in ice.'
print re.findall("(\.\s+[a-zA-Z]+)", input)
輸出:['. Splintering', '. A']
:你嘗試過什麼到目前爲止,以滿足您的願望是什麼? – Gogo
歡迎來到Stack Overflow。請參閱[遊覽](http://stackoverflow.com/tour)並訪問[幫助中心](http://stackoverflow.com/help)以查找有關如何提出良好問題的信息。 – devnull