Python 【Python/re】通常の文字列を正規表現に変換する サンプルコード import re # 1回以上の空白 + hoge + 任意の文字が0回以上 text = " +hoge.*" # 正規表現に変換 pattern = re.compile(text) # fugaに入れ替える new_... 2020.04.10 Python