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.
これが私のフレーズです: "Begin xxxxxxxxx TheEnd"
と
re(r'Begin \ s *(。*)')
「Begin」という単語を削除できます
しかし同時に「TheEnd」を削除する方法
これを試してみてください
(?i)(^Begin|The\sEnd$)
(?i)大文字と小文字を区別したい場合は削除してください。
(?i)
の後に追加するだけ.*です。疑問符は一致を最小限に抑えるので、周囲のスペースを拾うことはありません。
.*
r'Begin\s*(.*?)\s*The End'
実際には何も削除していないことに注意してください。途中でテキストを返しています。