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.
既に両方を含む JSON ファイルで、任意のNoneものを(一重引用符に注意してください)に変更したいと考えています。'None'
None
'None'
type: None or type: 'None'
試してみ"s/[']?None[']?/'None'/g"ましたが、うまくいかないようです。
"s/[']?None[']?/'None'/g"
allNoneをに変更しているので、その json 文字列で'None'使用する方が簡単ではないでしょうか? str.replace最初に に変更'None'しNone、次にすべてNoneを に変更し'None'ます。
str.replace
s/([^'])?(None)([^'])?/$1'$2'$3/g