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.
,vimを使用して検索と置換を実行したjsonファイルがありますが、行末にaを忘れました。
,
... "id":41483 "someName":"someValue", ...
,vim を使用して、一致するすべての行にa を追加するにはどうすればよい\"id\"\:[0-9].*$ですか?
\"id\"\:[0-9].*$
これを行う別の方法は、グローバル コマンドと通常のコマンドを使用することです。
:g/"id":[0-9]/norm A,
グローバル コマンドはnorm A,、一致するすべての行で実行され"id":[0-9]ます。行末にa を追加する通常モードでnorm A,実行されます。A,,
norm A,
"id":[0-9]
A,
を見て:help :global、:h :normal
:help :global
:h :normal