使用正規表示式擷取字串之間的文字
在Python 中,您可以利用正規表示式來擷取位於較大字串中兩個指定字串之間的文字。細繩。考慮以下範例:
"Part 1. Part 2. Part 3 then more text"
您的目標是隔離「Part 1」和「Part 3」之間的文本,即「.Part 2.」。為此,您可以使用re.search() 函數:
<code class="python">import re s = 'Part 1. Part 2. Part 3 then more text' match = re.search(r'Part 1\.(.*?)Part 3', s) if match: text_between = match.group(1) print(text_between)</code>
在這種情況下,正則表達式r'Part 1.(.*?)Part 3' 分配“.*?”作為捕獲組。這 ”?”確保該組是非貪婪的,這意味著它將捕獲滿足正則表達式的最短可能字串。 .* 匹配任何字符,.代表除換行符之外的任何字符。
如果存在多個出現,可以使用 re.findall() 來取代:
<code class="python">matches = re.findall(r'Part 1(.*?)Part 3', s) for match in matches: print(match)</code>
以上是如何在Python中使用正規表示式提取字串之間的文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!