Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の文字列に一致させたい:
window.universal = { yada yada ydada..... };
以下は最初の行を返します。次の2つも必要です
re.search(r'.*window.universal.*', content).group(0)
re.MULTILINE、\s 疲れました
.*
これを試して:
re.search(r'window.universal = {.*?};',content,re.DOTALL).group(0)
次の正規表現を使用できます。r'(?s).*pattern.*'
r'(?s).*pattern.*'
re.M
re.S