置換する文字を複数指定[Python]
import re patterns = "dog|cat|fox" repl = "animal" sentence = "dog, cat, fox, pen." re.sub(patterns, repl, sentence) >> 'animal, animal, animal, pen.'
replaceではなくre.subで置換するパターンを正規表現で指定するのだ。
画像処理や自然言語処理などのハマりどころをまとめます
import re patterns = "dog|cat|fox" repl = "animal" sentence = "dog, cat, fox, pen." re.sub(patterns, repl, sentence) >> 'animal, animal, animal, pen.'
replaceではなくre.subで置換するパターンを正規表現で指定するのだ。
ディスカッション
コメント一覧
まだ、コメントがありません