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 を使用していたとき、簡単な質問がありました。
",\s\d\t))パターンを に置き換えます",\s\d))。
",\s\d\t))
",\s\d))
例えば:
以下を変更
...roid", 1 )); ...id", 0 )); ...lite", 1 )); ...
に
...roid", 1)); ...id", 0)); ...lite", 1)); ...
試してみ%s/",\s\d\t/",\s\d))/gcましたが、変更されました...roid",sd));
%s/",\s\d\t/",\s\d))/gc
...roid",sd));
後方参照を使用します。
%s/",(\s\d)\t/",\1))/gc
ここに(\s\d)、キャプチャ グループがあります。は\1、キャプチャ グループを指します。
(\s\d)
\1