文に特定のパターンがあるかどうかを検索したい。見つからない場合は何もしません。pattern が見つかった場合、pattern を文字列内の別の部分文字列に置き換えます。
line1 = "Who acted as `` Bruce Wayne '' in the movie `` Batman Forever '' ?"
#Desired Result: Who acted as ``Bruce_Wayne'' in the movie ``Batman_Forever'' ?
#This is what I have tried..
def findSubString(raw_string, start_marker, end_marker):
start = raw_string.index(start_marker) + len(start_marker)
end = raw_string.index(end_marker, start)
return raw_string[start:end]
phrase = findSubString(line1, "``", "''")
newPhrase = phrase.strip(' ').replace(' ', '_')
line1 = line1.replace(phrase, newPhrase)
現在の結果:Who acted as ``Bruce_Wayne'' in the movie `` Batman Forever '' ?
これまでのところ、文の最初の出現を見つけることができましたが、次の出現は見つかりませんでした。一致するパターンですべての出現を検索する方法は?