たとえば、{}にあるすべての単語を取得するには、Pythonで正規表現が必要です
a = 'add {new} sentence {with} this word'
re.findall の結果は [new, with] である必要があります
ありがとう
たとえば、{}にあるすべての単語を取得するには、Pythonで正規表現が必要です
a = 'add {new} sentence {with} this word'
re.findall の結果は [new, with] である必要があります
ありがとう