web-dev-qa-db-ja.com

正規表現でNotepad ++を使用して、:、 ""の行で最初のオカレンスを検索し、:、 ""に置き換える方法

Notepad ++の検索/置換を使用して各行の最初の出現を正規表現に置き換えたい。

検索:,"",

と置換する: ," ",

つまり、2つの二重引用符の間に2つのスペースを挿入します。

どうすればよいですか?

1
user3229980

次の正規表現として実行できます。

  • 何を見つける:,"",(.*)$
  • と置換する: ," ",\1
  • 検索モード:正規表現

入力:

this is a ,"", here and another is here ,"", at the end
next ,"",,"", here ,"",
another one ,"",
,"", last one

期待される結果:

this is a ,"  ", here and another is here ,"", at the end
next ,"  ",,"", here ,"",
another one ,"  ",
,"  ", last one
3
αғsнιη